Skip to content

Instantly share code, notes, and snippets.

@fogus
Forked from pjb3/foldr.clj
Created September 6, 2011 17:57
Show Gist options
  • Save fogus/1198435 to your computer and use it in GitHub Desktop.
Save fogus/1198435 to your computer and use it in GitHub Desktop.
(defn foldr [f acc coll]
(if (first coll)
(f (first coll) (foldr f acc (rest coll)))
acc))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment