catch/3: Catch exception
catch[expression-which-can-raise-errors; function-called-with-result; function-called-with-error-message]
catch[error["Hello!"]; { echo["Success!"] }; { echo["Error: " concat x] }] /=> Error: Hello!