Skip to content

Instantly share code, notes, and snippets.

@danneu
Created March 9, 2013 23:54
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 danneu/d51fca630561ce7605cc to your computer and use it in GitHub Desktop.
Save danneu/d51fca630561ce7605cc to your computer and use it in GitHub Desktop.
(defn foo [x]
(when (> x 0)
(conj
(foo (dec x))
x)))
(foo 5) ;=> (5 4 3 2 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment