Wiki

Clone wiki

symja_android_library / Symbols / Continue

Continue

Continue( )
continue a Do, For or While loop.

Examples

>>> For($k= 1, $k <= 64, $k*=2, If($k <= 8, Continue(), Print($k)))
16
32
64

Related terms

Break, CompoundExpression, Do, For, If, Return, While

Updated