syntax-quote
quotes code while preserving symbol hygiene
Usage:
(syntax-quote form)Quotes a form while resolving symbols hygienically. Within a syntax-quoted form, unquote and unquote-splicing can inject evaluated values.
An Example
(let [x 99]
`(list ,x))