You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
angerangel edited this page Mar 19, 2013
·
1 revision
USAGE
THROW value /name word
DESCRIPTION
Throws control back to a previous catch.
THROW is a native value.
ARGUMENTS
value -- Value returned from catch (any-type!)
REFINEMENTS
/name -- Throws to a named catch
word (word!)
#SOURCE
throw: make native! [ [
"Throws control back to a previous catch."
value [any-type!] "Value returned from catch"
/name "Throws to a named catch"
word [word!]
] ]