Exit - Geomol/World GitHub Wiki
Usage
exit
Description
Exits a function, returning no value.
exit is a function!
Examples
w> val: does [a:1 b: 2 a + b]
w> print val
3
w> noval: does [a:1 b: 2 a + b exit]
w> print noval
?unset!?
exit
Exits a function, returning no value.
exit is a function!
w> val: does [a:1 b: 2 a + b]
w> print val
3
w> noval: does [a:1 b: 2 a + b exit]
w> print noval
?unset!?