(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
(let [x (+ 1 2)] | |
(* x 2)) | |
=> 6 | |
(let [x (+ 1 2) | |
y (* 2 x)] | |
(+ 1 y) | |
=> 7 |