(do (def count_down (fn [n] (if (< n 1) "done" (count_down (- n 1))))) (count_down 1000000) )