@(do (defun div-check (x y) (catch (/ x y) (numeric_error (msg) 'div-check-failed)))) @(bind good @(div-check 32 8)) @(bind bad @(div-check 42 0))