;; Benchmark: 2.0ms ;; Output: "done" (do (def count_down (fn [n] (if (< n 1) "done" (count_down (- n 1))))) (count_down 10000) )