Thread: Looping
View Single Post
  #22  
Old 12-21-2001, 05:38 PM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
ohh and if he did not know:
NPC Code:

NPC Code:

i=1;
while (i>=0) {
i++;
}

is the same as (does the same thing as):

for (i=0;i>=0;i++) {}




Reply With Quote