(return (? v #n)) v: any type (optional)
S
Returns from a function call.
When a return
form is evaluated, the current function call immediately ends,
returning v
.
It's an error if return
is called without an enclosing fn
form - for example,
at the toplevel of a source file.