Clojureの構文
#clojure
例外処理
with-handlers
を使う。
(with-handlers ([exn:fail:contract:divide-by-zero? (lambda (exn) +inf.0)]) (/ 1 0))