YENGcontinue
From OpenSimulator
(Difference between revisions)
												
			m (Add into category)  | 
			|||
| Line 7: | Line 7: | ||
    doSomething(i);  |     doSomething(i);  | ||
  }  |   }  | ||
| + | |||
| + | [[Category:Scripts]]  | ||
Revision as of 04:35, 22 September 2020
continue allows to skip into next step on do...while, while and for loops
for(integer i = 0; i < 5; i++)
{
  if(i == 3) //skip 3
     continue;
  doSomething(i);
}