break — keyword to interrupt loops
Inside a for or while loop, the command break forces the end of the loop.
k=0; while 1==1, k=k+1; if k > 100 then break,end; end