/* Author : Michael Robinson Program : myFirstProgram.java Purpose : To present, the Java class, the main method, and display my name using the Java println command Updated : January 14, 2099 */ public class myFirstProgram { public static void main(String arg[]) { System.out.println( "Hello World, my name is Joe" ); System.out.println( "Have a nice day." ); }//end public static void main( String arg[] ) }//end public class nameOfProgram