Continue
Continue()continues with the next iteration in a
For,While, orDoloop.
Examples
>> For(i=1, i<=8, i=i+1, If(Mod(i,2) == 0, Continue()); Print(i)) | 1 | 3 | 5 | 7Related terms
Implementation status
- ✅ - full supported
Continue()continues with the next iteration in a
For,While, orDoloop.
>> For(i=1, i<=8, i=i+1, If(Mod(i,2) == 0, Continue()); Print(i)) | 1 | 3 | 5 | 7