first commit
This commit is contained in:
38
CS1322/p0/HelloWorld.java
Normal file
38
CS1322/p0/HelloWorld.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/**
|
||||
* <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
|
||||
Reference in New Issue
Block a user