Thread: while loop
View Single Post
devicenull
Veteran Member
Join Date: Mar 2004
Location: CT
Old 03-20-2004 , 07:01  
Reply With Quote #14

Quote:
Originally Posted by PM
Code:
new i; for (i = 0; i <= 50; ++i) {    // stuff }
Something a bit smaller
Code:
for (new i = 0; i <= 50; ++i) {    // stuff }
Just a minor thing you can do
__________________
Various bits of semi-useful code in a bunch of languages: http://code.devicenull.org/
devicenull is offline