Skip to content

Instantly share code, notes, and snippets.

@sepp2k

sepp2k/bla.clj Secret

Last active August 21, 2019 19:39
Show Gist options
  • Save sepp2k/e74da85cca02b37daa6a364e8a15f9e6 to your computer and use it in GitHub Desktop.
Save sepp2k/e74da85cca02b37daa6a364e8a15f9e6 to your computer and use it in GitHub Desktop.
(defn make-empty []
(println "make-empty was called")
'())
(def x (lazy-seq (cons 1 (lazy-seq (make-empty)))))
(def y (rest x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment