Skip to content

Instantly share code, notes, and snippets.

@lukaseder
Created December 6, 2019 08:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukaseder/c24b38b6a0580084f4c883fdee7f695f to your computer and use it in GitHub Desktop.
Save lukaseder/c24b38b6a0580084f4c883fdee7f695f to your computer and use it in GitHub Desktop.
import static java.lang.System.exit;
import static java.lang.System.out;
public class Dafuq {
/**
* This does not do what you think it does.
* <p>
* You think code is documentation? No! Documentation is code!
\u002a\u002f
static {
out.println("No");
exit(0);
}
\u002f\u002a
*/
public static void main(String[] args) {
out.println("Yes");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment