YENGcontinue

From OpenSimulator

Revision as of 07:41, 22 September 2020 by Djphil (Talk | contribs)

Jump to: navigation, search

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);
}
Personal tools
General
About This Wiki