Loading...
 

break

break

break

Stack
Stack Position Description
Stack(In) Top -
Stack(Out) Top -

break is only allowed within a loop, i.e. within

break terminates the current loop and continues the execution with the next statement behind the loop. Thus it is a kind of return for loops. break always refers to the innermost loop enclosing the command if there are several enclosing loops.