 
		
	
		Copy/paste and save 
		
			 ProcessName.java
		in jGRASP, then go to the next slide.
			ProcessName.java
		in jGRASP, then go to the next slide.
	
import java.util.*;  // for Scanner
public class ProcessName {
    public static void main(String[] args) {
        Scanner console = new Scanner(System.in);
        System.out.print("Type your name: ");
        
        // your code goes here
        
        System.out.println("Your name is: " + name);
    }
}
	
	continued on the next slide ...
 
		
	
Type your name: Jessica Miller
Your name is: Miller, J.