YENGcontinue

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (Add into category)
Line 7: Line 7:
 
   doSomething(i);
 
   doSomething(i);
 
  }
 
  }
 +
 +
[[Category:Scripts]]

Revision as of 05: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);
}
Personal tools
General
About This Wiki