RosettaCodeData/Task/Detect-division-by-zero/TXR/detect-division-by-zero.txr

7 lines
174 B
Text
Raw Permalink Normal View History

2014-01-17 05:32:22 +00:00
@(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))