Toggle navigation
Extempore Functions Index
Core release (v0.8.9)
(current)
XTM Extensions
About
Submit
hidden link
throw
scheme
Defined in:
https://github.com/digego/extempore/tree/v0.8.9/runtime/init.xtm
Implementation
(
define
(
throw
.
x
)
(
if
(
more-handlers?
)
(
apply
(
pop-handler
))
(
apply
error
x
)))
Back to Index