7 Feb
2009
7 Feb
'09
9:38 p.m.
Get it while it's hot! int count; 3 %=> count++; //or 3 %=> ++count; Whether such constructions should be used at all is of course debatable and we do have this; ++count%3 => count; ....which does work but the above examples shouldn't lead to VM-collapses, which they do. Yours, Kas.