continue
Jump to the end of the current command block.
None
None
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.
z = 0; x = array[1]
while (x < 10) {
if (x <= 0) continue; # Skip to }
z += array[x]
x = array[x+1]
}
|
Commands: |