Advertisement
wingman007

Java - Hello World

Nov 9th, 2013
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. // Save into a file File HelloWorld.java
  2. // compile with javc HelloWorld.java
  3. // execute java HelloWOrld
  4.  
  5. public class HelloWorld {
  6.     /**
  7.      * Main method - prints in the console
  8.      * @param args - coming from the command line
  9.     */
  10.     public static void main(String[] args) {
  11.         System.out.println("Hello World!");
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement