Idioms | Comments What if 1 2 3 4 5 6 7 8 9 10 11 for (int i=0; i<100; i++) { doSomething(); } // and for (int i=0; i<100; i+=2) { doSomethingElse(); } Was 1 2 doSomething() for 1..99; while (i=1,2..99) { doSomethingElse(); }; Would the world be a better place?