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
./bb --version babashka v0.8.3-SNAPSHOT
platform
uname -a Darwin AmbrosesMBP2020.lan 21.5.0 Darwin Kernel Version 21.5.0: Tue Apr 26 21:08:22 PDT 2022; root:xnu-8020.121.3~4/RELEASE_X86_64 x86_64
problem
Syntax quote should not qualify dotted symbols to align with Clojure.
repro
./bb Babashka v0.8.3-SNAPSHOT REPL. Use :repl/quit or :repl/exit to quit the REPL. Clojure rocks, Bash reaches. user=> `a.b.c user/a.b.c
expected behavior
clj Clojure 1.11.1 user=> `a.b.c a.b.c
The text was updated successfully, but these errors were encountered:
So the reasoning is that a.b.c should be "left alone" as it can refer to some class, like foo.bar.Baz, or all lowercase foo.bar.baz.
a.b.c
foo.bar.Baz
foo.bar.baz
Sorry, something went wrong.
c9b6310
No branches or pull requests
version
platform
problem
Syntax quote should not qualify dotted symbols to align with Clojure.
repro
expected behavior
The text was updated successfully, but these errors were encountered: