Created
August 31, 2016 19:50
-
-
Save aeris/e4448412c1ef67267e028691ee53b66a to your computer and use it in GitHub Desktop.
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 Unicode { | |
public static void main(String[] args) { | |
if ( true ) { | |
// \u000A\u007D\u0020\u0065\u006C\u0073\u0065\u0020\u007B | |
System.out.println("True"); | |
// \u000A\u007D\u0020\u0069\u0066\u0020\u0028\u0020\u0066\u0061\u006C\u0073\u0065\u0020\u0029\u0020\u007B | |
} else { | |
System.out.println("False"); | |
} | |
} | |
} | |
// Will display "False" :P |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment