Skip to content
New issue

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

update documentation #12

Open
francescoagati opened this issue Sep 7, 2010 · 1 comment
Open

update documentation #12

francescoagati opened this issue Sep 7, 2010 · 1 comment

Comments

@francescoagati
Copy link

i have see that is supported also syntax quote

(defmacro sum (a b)
(defvar x 100)
`(+ ~a ~b ~x)

)

(sum 1 2)

@jbr
Copy link
Owner

jbr commented Sep 8, 2010

Pseudoquoting isn't currently supported, but that's a planned feature. Right now, concat serves the same function, as in

(defmacro sum (a b)
  (defvar x 100)
  (join " + " (list a b x)))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants