Quote:
Originally posted by GoZelda
i=0;
while (i<5){
i++
}
Is the same as
for (i=0;i<5;i++){
}
|
so true ^_^ first time that a saw the debugger changes for loops into whiles i was like "omg wtf??? GRAAL CHANGERD MY SCRIPT!!!!!" but then i looked at it and said.. "oh.. its the same damn thing"