One of the things, after all these years, that keeps me fascinated about coding, it’s finding curiosities in a few lines of code that make me think for a while!
public class JavaPearls {
public static void main(String… args){
Integer a = new Integer(10);
Integer b = new Integer(10);
for(;a<=b && b <= a && a != b;)
System.out.println(“.”);
}
}