Join
Blogs
Questions
Videos
Tags
Members
Search
 
 
Create your own blog, earn points and get popular!

Java Hello World Example

  1. /*
  2. Java Hello World example.
  3. */
  4.  
  5. public class HelloWorldExample{
  6.  
  7.     public static void main(String args[]){
  8.    
  9.         /*
  10.             Use System.out.println() to print on console.
  11.         */
  12.        
  13.         System.out.println("Hello World!");
  14.    
  15.     }
  16.  
  17. }
  18.  
  19. /*
  20. OUTPUT of the above given Java Hello World Example would be :
  21. Hello World!
  22. */
No votes yet
Share this

Post new comment