Next:
2.3.10 Exit
Up:
2.3 Statements
Previous:
2.3.8 Try Finally
2.3.9 Loop
A statement of the form:
LOOP S END
repeatedly executes
S
until it raises the exit-exception. Informally it is like:
TRY S; S; S; ... EXCEPT exit-exception => (*skip*) END
m3-support@elego.de