Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created May 4, 2014 21:01
Show Gist options
  • Save AeroNotix/11523790 to your computer and use it in GitHub Desktop.
Save AeroNotix/11523790 to your computer and use it in GitHub Desktop.
(defn recursive-reverse [coll]
(loop [ [x & xs] (seq coll)
acc '()]
(if (nil? x)
acc
(recur xs (cons x acc)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment