Skip to content

Instantly share code, notes, and snippets.

@MilkZoft
Created January 14, 2012 17:36
Show Gist options
  • Save MilkZoft/1612212 to your computer and use it in GitHub Desktop.
Save MilkZoft/1612212 to your computer and use it in GitHub Desktop.
code.jobs - Hello World - Java
/**
* To compile and run this code you need to execute the following statements:
* javac hello.java
* java HelloWorld
*/
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment