
/* 
   This file defines a very simple program that asks for the
   user's name and then says hello.
*/


public class FirstProgram {

   public static void main(String[] args) {

      Console console = new Console();   // open a console window

      String name;  // declare a variable to hold the user's name

      console.put("Please enter your name: ");
      name = console.getln();
      console.putln("Hello, " + name + "! Pleased to meet you.");

      console.close();  // close the console window

   }  // end of main()

}  // end of class FirstProgram

