Skip to content

Instantly share code, notes, and snippets.

@tedheich
Created October 24, 2009 14:34
Show Gist options
  • Save tedheich/217555 to your computer and use it in GitHub Desktop.
Save tedheich/217555 to your computer and use it in GitHub Desktop.
Simple Hello World in Java
class Hello {
void sayhello() {
System.out.println("Hello World\n");
}
}
class HelloMain {
public static void main(String []args) {
System.out.println("Hello World\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment