Skip to content

Instantly share code, notes, and snippets.

@davidwallacejackson
Created October 21, 2012 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidwallacejackson/3928201 to your computer and use it in GitHub Desktop.
Save davidwallacejackson/3928201 to your computer and use it in GitHub Desktop.
(defmacro test-macro [s] ('a s))
(macroexpand-1 '(test-macro 3))
;;expected: (a 3)
;;got: nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment