We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
repl-bot correctly evaluates expressions to a LazySeq:
user:
(take (rand-int 100) (range (rand-int 100)))
repl-bot: => clojure.lang.LazySeq@ccc08705
However, using 'doall' does not immediately evaluate the generated LazySeq like it should:
(doall (take (rand-int 100) (range (rand-int 100))))
repl-bot: => clojure.lang.LazySeq@9ebadac6
The text was updated successfully, but these errors were encountered:
No branches or pull requests
repl-bot correctly evaluates expressions to a LazySeq:
user:
repl-bot:
=> clojure.lang.LazySeq@ccc08705
However, using 'doall' does not immediately evaluate the generated LazySeq like it should:
user:
repl-bot:
=> clojure.lang.LazySeq@9ebadac6
The text was updated successfully, but these errors were encountered: