RosettaCodeData/Task/Flow-control-structures/Zkl/flow-control-structures-1.zkl
2017-09-25 22:28:19 +02:00

4 lines
205 B
Text

continue; continue(n); // continue nth nested loop
break; break(n); // break out of nth nested loop
try{ ... }catch(exception){ ... } [else{ ... }]
onExit(fcn); // run fcn when enclosing function exits