Skip to content

Instantly share code, notes, and snippets.

@frenchy64
Created August 23, 2011 15:36
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 frenchy64/1165470 to your computer and use it in GitHub Desktop.
Save frenchy64/1165470 to your computer and use it in GitHub Desktop.
match.core=> (def ^{:dynamic true} *test1* false)
#'match.core/*test1*
match.core=> (defmacro mtest []
*test1*)
#'match.core/mtest
match.core=> (mtest)
false
match.core=> (binding [*test1* true]
(mtest))
false
match.core=>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment