Skip to content

Instantly share code, notes, and snippets.

@kindlychung
Created January 14, 2015 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kindlychung/7aaf44ba3ecb60a0d5fd to your computer and use it in GitHub Desktop.
Save kindlychung/7aaf44ba3ecb60a0d5fd to your computer and use it in GitHub Desktop.
(defn even-numbers
([] (even-numbers 0))
([n] (cons n
(lazy-seq (even-numbers (+ n 2)))))
)
(take 10 (even-numbers 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment