YENGcontinue
From OpenSimulator
(Difference between revisions)
(Created page with "continue allows to skip into next step on do...while, while and for loops for(integer i = 0; i< 5; i++) { if(i == 4) //skip 4 continue; doSomething(i); }") |
Revision as of 15:36, 19 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 == 4) //skip 4 continue; doSomething(i); }