YENGcontinue

From OpenSimulator

Revision as of 16:36, 19 September 2020 by Ubit (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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 == 4) //skip 4
     continue;
  doSomething(i);
}
Personal tools
General
About This Wiki