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
lips> (let ((name 'x)) `(let ((name 'y)) `(list ',name))) (let ((name (quote y))) (quasiquote (list (quote x))))
it should be (quote (unquote name)) the value should not be evaluated if only one unquote.
(quote (unquote name))
The text was updated successfully, but these errors were encountered:
fxi quasiquote macro #14
e3f02f0
fix quasiquote #14 + require and load for node.js
dd7e239
fix unquote-splicing #14 + update API for specials
5876d28
fix unquote-splicing of symbols #14
6a36d6d
refactor and fix unquote splicing of any non pair value #14
be03f0c
No branches or pull requests
it should be
(quote (unquote name))
the value should not be evaluated if only one unquote.The text was updated successfully, but these errors were encountered: