You are here > Home > Java SE
Hello World Example
Author: Cyberical Views: 347 Posted On: Apr 27, 2009
/*
Java Hello World example.
*/
  public class HelloWorldExample{   public static void main(String args[]){   /*
Use System.out.println() to print on console.
*/
System.out.println("Hello World !");   }   }   /*
 
OUTPUT of the above given Java Hello World Example would be :
 
Hello Wolrd !
 
*/