Created
January 6, 2018 04:21
-
-
Save JS-Zheng/44adfb0c5e83ff03dd509b24a5d1f161 to your computer and use it in GitHub Desktop.
Hello, World!
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
public class Main { | |
public static void main(String[] args) { | |
// Just a comment | |
System.out.println("Hello, World!"); | |
} | |
} | |
// Result: | |
// Hello, World! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment