Control & error functions

Abort, assert, and signal evaluation failure.

FunctionDescription
assert(cond: bool, msg: utf8) → noneReturn none when cond is true, otherwise abort with msg.
error(msg: utf8) → neverAbort evaluation with an error message.
panic(msg: utf8) → neverAbort evaluation with an unrecoverable failure message.