Skip to content

Instantly share code, notes, and snippets.

@johnzeringue
Last active August 29, 2015 14:01
Show Gist options
  • Save johnzeringue/e4406d6c3a3cb6f50f3d to your computer and use it in GitHub Desktop.
Save johnzeringue/e4406d6c3a3cb6f50f3d to your computer and use it in GitHub Desktop.
A simple hello world program in Java to test GitHub Gists
/**
* A basic hello world in Java
*/
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