YENGcontinue

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(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 16: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);
}
Personal tools
General
About This Wiki