Skip to content

Instantly share code, notes, and snippets.

@christmoore
Created June 27, 2015 20:09
Show Gist options
  • Save christmoore/378e1b7d5d4944a58a48 to your computer and use it in GitHub Desktop.
Save christmoore/378e1b7d5d4944a58a48 to your computer and use it in GitHub Desktop.
public class HelloWorld
{
public void HelloWorld()
{
System.out.println("Hello World");
}
public static void main(String[] args)
{
HelloWorld hw = new HelloWorld();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment