Command: continue

Syntax

continue

Description

Jump to the end of the current command block.

Parameters

None

Switches

None

Notes

If the current command block is part of a while, until, do, for, gloop, identloop, or loop outer block, the jump is made to the end of the block.

Examples

z = 0; x = array[1]
while (x < 10) {
    if (x <= 0) continue; # Skip to }
    z += array[x]
    x = array[x+1]
}

See Also

Commands:

do, for, gloop, identloop, loop, pause, until, while