Guest User

Untitled

a guest
Dec 8th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. public class MyFirstJavaProgram{
  2.  
  3. /* This is my first java program.  * This will print 'Hello World' as the output */
  4.  
  5.     public static void main(String []args){
  6.  
  7.         System.out.println("Hello World"); // prints Hello World
  8.  
  9.     }
  10.    
  11. }
Advertisement
Add Comment
Please, Sign In to add comment