Control & error functions
Abort, assert, and signal evaluation failure.
| Function | Description |
|---|---|
| assert(cond: bool, msg: utf8) → none | Return none when cond is true, otherwise abort with msg. |
| error(msg: utf8) → never | Abort evaluation with an error message. |
| panic(msg: utf8) → never | Abort evaluation with an unrecoverable failure message. |