forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
angerangel edited this page Mar 20, 2013
·
1 revision
TRY block /except code
Tries to DO a block and returns its value or an error.
TRY is a native value.
- block (block!)
-
/except -- On exception, evaluate this code block
- code (block! any-function!)
#SOURCE
try: make native! [ [
{Tries to DO a block and returns its value or an error.}
block [block!]
/except "On exception, evaluate this code block"
code [block! any-function!]
] ]