Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created March 23, 2014 14:04
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 AeroNotix/3dc016ad70e351bb2a02 to your computer and use it in GitHub Desktop.
Save AeroNotix/3dc016ad70e351bb2a02 to your computer and use it in GitHub Desktop.
user=> (def x '[a 42])
user/x
user=> `(let ~x
(println ~'a))
(clojure.core/let [a 42] (clojure.core/println a))
user=> (eval *1)
42
nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment