/* Author : Michael Robinson Program : nameOfProgram.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 nameOfProgram { public static void main( String arg[] ) { System.out.println( "Hello World, my name is Joe" ); System.out.println( "Have a nice day." ); } }