BREAK terminates processing of a control (loop) structure
CONTROLS
BREAK
N.A.
This method has no refinements
BREAK terminates processing of a control (loop) structure
BREAK should be used sparingly. It forces not normal behaviour in a loop and can be cause of memory leakage.
for n 5 [
if n > 3 [break]
write/line n
]