Skip to content

Instantly share code, notes, and snippets.

@trptcolin
Last active January 1, 2016 21:09
Show Gist options
  • Save trptcolin/8201374 to your computer and use it in GitHub Desktop.
Save trptcolin/8201374 to your computer and use it in GitHub Desktop.
(require '[backtick :refer [template syntax-quote]])
;=> nil
(let [x 2] (template (foo ~x)))
;=> (foo 2)
(let [x 2] (syntax-quote (foo ~x)))
;=> (user/foo 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment