Skip to content

Instantly share code, notes, and snippets.

@mneedham
Created December 10, 2009 16:16
Show Gist options
  • Save mneedham/253428 to your computer and use it in GitHub Desktop.
Save mneedham/253428 to your computer and use it in GitHub Desktop.
(defmacro a [person]
`(println "hello" ~person))
user=> (macroexpand-1 '(a "mark"))
(clojure.core/println "hello" "mark")
user=> (a "mark")
hello mark
nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment