HelloWorld.java |
/** * HelloWorld is a simple program * that say hello to you. * * @author Author... * @version 0.1 */ public class HelloWorld { /** * The main program of the class HelloWorld * @param args the arguments pass by the user */ public static void main(String args[]) { System.out.println("Hello World"); } }