CONTINUE makes a loop skip the rest of the inner loop and continue the processing with the next iteration
CONTROLS
CONTINUE
N.A.
This method has no refinements
CONTINUE makes a loop skip the rest of the inner loop and continue the processing with the next iteration.
CONTINUE should be used very sparingly. It forces not normal behaviour in a loop and can be cause of memory leakage.
for n 5 [
if n < 3 [continue]
write/line n
]