Skip to content

Instantly share code, notes, and snippets.

@nerdroychan
Created November 5, 2016 14:56
Show Gist options
  • Save nerdroychan/abaa94b12193a0f5a35f840277967ed4 to your computer and use it in GitHub Desktop.
Save nerdroychan/abaa94b12193a0f5a35f840277967ed4 to your computer and use it in GitHub Desktop.
/**
* The HelloWorldApp class implements an application that
* simply displays "Hello World!" to the standard output.
*/
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); //Display the string.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment