Skip to content

Instantly share code, notes, and snippets.

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