Created
September 10, 2014 20:40
-
-
Save johnmay/eae2298810f1ebdd50e8 to your computer and use it in GitHub Desktop.
Hello World no semicolon
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) throws Exception { | |
| while(System.out.getClass() | |
| .getMethod("println", String.class) | |
| .invoke(System.out, "Hello world!") != null) { | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment