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
This works:
$ clj -e "\`~(let [x 1] x)" 1
But this doesn't:
$ lein run "\`~(let [x 1] x)"
In the branch macro-defn-fix this now works:
macro-defn-fix
borkdude@MBP2019 ~/Dropbox/dev/clojure/babashka/sci (macro-defn-fix) $ lein run "\`~(let [x 1] x)" 1 borkdude@MBP2019 ~/Dropbox/dev/clojure/babashka/sci (macro-defn-fix) $ lein run "\`[~@(let [x 1] [x x])]" [1 1]
$ lein run "\`[~@(for [x [1 2 3]] x)]" [1 2 3]
The text was updated successfully, but these errors were encountered:
[#156] fix syntax-quote / unquote
04e3e2b
[#156] fix syntax-quote + unquote
894b0b4
bump sci: babashka/sci#156
67ff99d
No branches or pull requests
This works:
But this doesn't:
In the branch
macro-defn-fix
this now works:The text was updated successfully, but these errors were encountered: