(false-on-error stmts) -> #f or result of statements
Given a list of statements, false-on-error will return #f on an error or pass through the return value.
>> (false-on-error (non-existent-function)) :: #f
See Also: trap, guard