| Views: 311 | 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 !
*/





