Skip to content

Instantly share code, notes, and snippets.

@johnmay
Created September 10, 2014 20:40
Show Gist options
  • Select an option

  • Save johnmay/eae2298810f1ebdd50e8 to your computer and use it in GitHub Desktop.

Select an option

Save johnmay/eae2298810f1ebdd50e8 to your computer and use it in GitHub Desktop.
Hello World no semicolon
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