Skip to content

Instantly share code, notes, and snippets.

@kitofr
Created May 30, 2011 17:37
Show Gist options
  • Save kitofr/999204 to your computer and use it in GitHub Desktop.
Save kitofr/999204 to your computer and use it in GitHub Desktop.
;http://4clojure.com/problem/23
#(loop [coll % stk []]
(if (empty? coll)
stk
(recur (next coll) (cons (first coll) stk))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment