Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active April 30, 2017 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/dfbaf318524e6ece957fdd354436db65 to your computer and use it in GitHub Desktop.
Save deque-blog/dfbaf318524e6ece957fdd354436db65 to your computer and use it in GitHub Desktop.
(defn counter
[n]
(println n)
(if (< 0 n)
(recur (- n 1))
"Done!"))
(counter 3)
3
2
1
0
=> "Done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment