Skip to content

Instantly share code, notes, and snippets.

@clara-shin
Created May 30, 2018 06:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clara-shin/c53f50d37a4649e95fd5ee9d183ba485 to your computer and use it in GitHub Desktop.
Save clara-shin/c53f50d37a4649e95fd5ee9d183ba485 to your computer and use it in GitHub Desktop.
Hello application
/**
* The Hello class implements an application that
* simply prints “Hello, Java Application!” to standard output. */
public class Hello {
public static void main(String args[]) { // main method
/* Display the string */
System.out.println("Hello, Java Application!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment