Skip to content

Instantly share code, notes, and snippets.

@jcreager
Created May 2, 2016 05:35
Embed
What would you like to do?
Print 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