Created
May 30, 2018 06:53
-
-
Save clara-shin/c53f50d37a4649e95fd5ee9d183ba485 to your computer and use it in GitHub Desktop.
Hello application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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