Skip to content

Instantly share code, notes, and snippets.

@jtmarmon
Last active August 29, 2015 14:21
Show Gist options
  • Save jtmarmon/e3b171a9a9fa2d808136 to your computer and use it in GitHub Desktop.
Save jtmarmon/e3b171a9a9fa2d808136 to your computer and use it in GitHub Desktop.
user=> (def h "hello")
#'user/h
user=> h
"hello"
user=> 'h
h
user=> (+ 1 2)
3
user=> '(+ 1 2)
(+ 1 2)
user=> (eval '(+ 1 2))
3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment