diff --git a/examples/lazyseqs.dst b/examples/lazyseqs.dst index b4f26aa4..4b49eef8 100644 --- a/examples/lazyseqs.dst +++ b/examples/lazyseqs.dst @@ -35,7 +35,8 @@ that was memoized." (defn cons "Create a new sequence by prepending a value to the original sequence." [h t] - (delay (tuple h t))) + (def x (tuple h t)) + (fn [] x)) (defn empty? "Check if a sequence is empty."