True Is False.

This is just a fun thing I found somewhere online. Not my own creation. Java code:

class TrueIsFalse {
    public static void main(String[] args) {
        if (true == false) { // \u000a\u007d\u007b
            System.out.println(“true is false!”);
        }
    }
}

Funny, but this Java code actually prints “true is false!”. If this looks confusing, please spend a few minutes figuring this out before you look at the explanation here: http://www.coderanch.com/t/658698/ocajp/certification/true-equal-false