Is flase true? Or true is false...
Let's find out together.
public class J {
public static void main(String args[]) {
if (true == false) {
// some unicode: \u000a\u007d\u007b
System.out.println("true is false! realy?");
}
}
}
This short java code prints out message "true is false! realy?". Why? Just look at the unicode characters in the comment. What are they and what do they do for the translation/compile process?