RosettaCodeData/Task/Flow-control-structures/Zkl/flow-control-structures-1.zkl

5 lines
205 B
Plaintext

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