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
version Babashka v0.2.3 REPL
platform
babashka binary on linux (ubuntu)
problem
Vars on vectors don't seem to correctly get parsed or evaluated.
repro
Babashka v0.2.3 REPL. Use :repl/quit or :repl/exit to quit the REPL. Clojure rocks, Bash reaches. user=> ^{:foo 'bar} [] [] user=> (meta *1) {:line 2, :column 7, :end-line 2, :end-column 9, :foo (quote bar)} user=> (-> *2 meta :foo type) clojure.lang.PersistentList user=>
expected behavior
Clojure 1.10.1 user=> ^{:foo 'bar} [] [] user=> (meta *1) {:foo bar} user=> (-> *2 meta :foo type) clojure.lang.Symbol user=>
The text was updated successfully, but these errors were encountered:
[#448] Preserve and eval reader meta on coll literals
ee5563f
4311815
[babashka/sci#448] Support evaluations in reader metadata on colls
18f9a7e
No branches or pull requests
version
Babashka v0.2.3 REPL
platform
babashka binary on linux (ubuntu)
problem
Vars on vectors don't seem to correctly get parsed or evaluated.
repro
expected behavior
The text was updated successfully, but these errors were encountered: