-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
infinite lazy seqs don't work #18
Comments
They work, but the problem here is that the REPL attempts to print them. Thank you for the reminder. |
Workaround: (do (def all-ints (iterate inc 0)) nil) Or: (defn forget [_] nil))
(forget (def all-ints (iterate inc 0))) |
Nice trick. Thanks. |
An update to ClojureScript is coming out that will allow this. |
Cool stuff! CLJS is maturing more and more! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tried this, but it hangs:
The text was updated successfully, but these errors were encountered: