Skip to content

Instantly share code, notes, and snippets.

@astrangeguy
Created October 20, 2009 13:17
Show Gist options
  • Save astrangeguy/214253 to your computer and use it in GitHub Desktop.
Save astrangeguy/214253 to your computer and use it in GitHub Desktop.
(defn map [f aseq]
(lazy-seq
(when-let [it (seq aseq)]
(cons (f (first it)) (map f (rest it))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment