Hi,

This has probably been asked a million times but I couldn't find
anything.

Why the following triggers infinite realization of the infinite lazy
seq and how I can work around it and make it stop when f1 returns an
empty seq,

(defn f1 [] (println "hello") [])
(defn f2 [] (lazy-cat (f1) (f2)))

(doseq [a (f2)]
 (pprint a))

Thanks,
Michael

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to