import java.lang.*; /**The classic first example of an application program: Prints Hello World @see HelloWorld */ class Hello { /**The starting point for the Hello Application. This function asks for a string "Hello, World" to be printed on the System output stream (System.out) as a terminated line. */ public static void main(String argv[]){ System.out.println("Hello, World!"); }//main }//class Hello