RosettaCodeData/Task/Exceptions/Clojure/exceptions.clj
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

8 lines
191 B
Clojure

(try
(if (> (rand) 0.5)
(throw (RuntimeException. "oops!"))
(println "see this half the time")
(catch RuntimeException e
(println e)
(finally
(println "always see this"))