AJ wrote:
Cons: 10. Allows one to write hard-to-see "do nothings" like: for(;;);
That's not allowed in D, for that exact reason. You have to write
for (;;) { }
for a do-nothing loop.
-Lars
AJ wrote:
Cons: 10. Allows one to write hard-to-see "do nothings" like: for(;;);
That's not allowed in D, for that exact reason. You have to write
for (;;) { }
for a do-nothing loop.
-Lars