39 lines
926 B
Java
39 lines
926 B
Java
/**
|
|
* <PRE>
|
|
* 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
|
|
* </PRE>
|
|
*
|
|
* Collaboration Statement:
|
|
* I worked on the homework assignment alone, using only
|
|
* course materials.
|
|
*
|
|
* @author <A HREF="mailto:gtg184g@mail.gatech.edu">Jose Manuel Caban</A>
|
|
* @version Version 1.1, Aug. 26, 2002
|
|
*/
|
|
|
|
public class HelloWorld {
|
|
|
|
|
|
/**
|
|
* Prints Hello World! on the screen
|
|
*
|
|
* <br><br>
|
|
* @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
|