Created
December 6, 2019 08:39
-
-
Save lukaseder/c24b38b6a0580084f4c883fdee7f695f to your computer and use it in GitHub Desktop.
This file contains 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
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