Skip to content

Instantly share code, notes, and snippets.

@kitofr
Created June 15, 2011 09:36
Show Gist options
  • Save kitofr/1026799 to your computer and use it in GitHub Desktop.
Save kitofr/1026799 to your computer and use it in GitHub Desktop.
;http://4clojure.com/problem/34
#(loop [from %1 to %2 c ()]
(if (= from to)
(reverse c)
(recur (inc from) to (conj c from))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment