←
CompoundExpression
→
Do
/
Reference of Built-in Symbols
/
Procedural Programming
/
Continue
WMA link
Continue[]
continues with the next iteration in a
For
,
While
, or
Do
loop.
For[i=1, i<=8, i=i+1, If[Mod[i,2] == 0, Continue[]]; Print[i]]
←
CompoundExpression
→
Do