Java - Hello World Example

Your first introduction to the world of Java This simple script prints the famous Hello World to the console.
  1. class HelloWorld {      
  2.     public static void main(String args[]) {      
  3.         System.out.println( "Hello world");      
  4.     }      
  5. }  

No comments:

Post a Comment