Catch

Syntax

catch/3: Catch exception

catch[expression-which-can-raise-errors; function-called-with-result; function-called-with-error-message]

Example

catch[error["Hello!"]; { echo["Success!"] }; { echo["Error: " concat x] }] /=> Error: Hello!