Skip to content

Instantly share code, notes, and snippets.

@spaghettiSyntax
Created December 5, 2017 14:41
Show Gist options
  • Save spaghettiSyntax/23b9d5ed252622a68fe183613d3d7ff9 to your computer and use it in GitHub Desktop.
Save spaghettiSyntax/23b9d5ed252622a68fe183613d3d7ff9 to your computer and use it in GitHub Desktop.
Think Java Code Snippets
public class HelloWorld {
public static void main(String[] args) {
// generate some simple output
System.out.println("Hello, World!"); // first line
System.out.println("How are you?"); // another line
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment