Skip to content

Instantly share code, notes, and snippets.

@dawranliou
Last active April 26, 2018 00:47
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 dawranliou/61431f5efdf921328704d1d155d28310 to your computer and use it in GitHub Desktop.
Save dawranliou/61431f5efdf921328704d1d155d28310 to your computer and use it in GitHub Desktop.
(defn number-generator
([] (number-generator 0))
([i] (lazy-seq (cons i
(number-generator (inc i))))))
(def numbers (number-generator))
(take 6 numbers)
;; (0 1 2 3 4 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment