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