Skip to content

Instantly share code, notes, and snippets.

@bgmarx
Created January 7, 2015 09:45
Show Gist options
  • Save bgmarx/eb16649a5e2f3f5e0970 to your computer and use it in GitHub Desktop.
Save bgmarx/eb16649a5e2f3f5e0970 to your computer and use it in GitHub Desktop.
(defn my-take [n coll]
(if (or (empty? coll)
(zero? n))
'()
(cons (first coll) (my-take (dec n) (rest coll)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment