1Function: break
2Section: programming/control
3C-Name: break0
4Prototype: D1,L,
5Help: break({n=1}): interrupt execution of current instruction sequence, and
6 exit from the n innermost enclosing loops.
7Doc: interrupts execution of current \var{seq}, and
8 immediately exits from the $n$ innermost enclosing loops, within the
9 current function call (or the top level loop); the integer $n$ must be
10 positive. If $n$ is greater than the number of enclosing loops, all
11 enclosing loops are exited.
12