attempt
Runs everything inside the statement, and if something throws an exception (error), the error will not terminate the script. If there is an 'on_error' statement, it will be executed.
Syntax
attempt
Example
&collection = Coll.Empty
attempt
Print {Coll.Fetch &collection 2}
end
# The error is handled by on_error when one is present.
on_error with $message
Print "Handled: {$message}"
end