Thursday 23 August 2012

Java First Program




Java Hello World Program
/** Comment
 * Displays "Hello World!" to the standard output.
 */
class HelloWorld {

  public static void main (String args[]) {

    System.out.println("Hello World!");   //Displays the enclosed String on the Screen Console

  }
  
}


No comments:

Post a Comment