/** *
 *  HelloWorld.java
 *  Class HelloWorld - A Class to welcome me into
 *    the world of Java programming by outputting
 *    HelloWorld.
 *  
 *  Revisions: 1.0 Aug. 26, 2002
 *               Created the HelloWorld class
 *             1.1 Aug. 26, 2002
 *               Finished, Compiled, Tested
 *  
* * Collaboration Statement: * I worked on the homework assignment alone, using only * course materials. * * @author Jose Manuel Caban * @version Version 1.1, Aug. 26, 2002 */ public class HelloWorld { /** * Prints Hello World! on the screen * *

* @param args IGNORED */ public static void main(String[] args) { //Display " Hello World!" System.out.println("Hello World!"); }// end of main(String[] args) }// end of class HelloWorld