Skip to content

Instantly share code, notes, and snippets.

@sepp2k

sepp2k/bla2.clj Secret

Created August 21, 2019 19:40
Show Gist options
  • Save sepp2k/a4dd31ec1d70f76bed1c3364aac46fb9 to your computer and use it in GitHub Desktop.
Save sepp2k/a4dd31ec1d70f76bed1c3364aac46fb9 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