Skip to content

Instantly share code, notes, and snippets.

@cemerick
Created October 25, 2011 13:06
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 cemerick/1312660 to your computer and use it in GitHub Desktop.
Save cemerick/1312660 to your computer and use it in GitHub Desktop.
^:const example
=> (def ^:const a 5)
#'user/a
=> (defn b [] a)
#'user/b
=> (def a 10)
#'user/a
=> (b)
5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment