jackdempsey (owner)

Revisions

gist: 135941 Download_button fork
public
Public Clone URL: git://gist.github.com/135941.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
user=> (def foo 29)
#'user/foo
user=> foo
29
user=> (print-foo)
29
nil
user=> (let [foo "foo here in let"] (print-foo))
29
nil
user=> (binding [foo "foo here in let"] (print-foo))
foo here in let
nil