Created
August 29, 2012 20:57
-
-
Save gfredericks/3518832 to your computer and use it in GitHub Desktop.
4Bo
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 loud-numbers | |
[] | |
(take 10 (iterate (fn [x] (println "I'm adding to " x) (inc x)) 0))) | |
(defn less-lazy | |
[coll] | |
(lazy-seq | |
(future (second coll)) | |
(cons (first coll) (less-lazy (rest coll))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment