Rebol Programming/try

USAGE:

edit
TRY block 

DESCRIPTION:

edit

Tries to DO a block and returns its value or an error.

TRY is a native value.

ARGUMENTS

edit
  • block -- (Type: block)

SOURCE CODE

edit
try: native[
    {Tries to DO a block and returns its value or an error.} 
    block [block!]
]