Advertisement
Guest User

Hello World in Java

a guest
Apr 6th, 2013
6,144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. // Sample code used in this article: http://www.wikihow.com/Program-in-Java
  2.  
  3. public class HelloWorld{
  4.     public static void main(String[] args){
  5.         System.out.println("Hello World");
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement