Last active
April 26, 2018 00:47
-
-
Save dawranliou/61431f5efdf921328704d1d155d28310 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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