Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active April 30, 2017 11:15
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 deque-blog/7f3fb4335d62b7ddf19da63fc35a7837 to your computer and use it in GitHub Desktop.
Save deque-blog/7f3fb4335d62b7ddf19da63fc35a7837 to your computer and use it in GitHub Desktop.
(let [x (+ 1 2)]
(* x 2))
=> 6
(let [x (+ 1 2)
y (* 2 x)]
(+ 1 y)
=> 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment