I understand that they're different since one works for setting *compile-path* and one doesn't. However, I need help with why they're different.
let creates a new scope with the given bindings, but binding...?
Thanks!
|
feedback
|
|
Dynamic binding means that the code inside your Given:
Lexical vs. dynamic binding:
| |||||
feedback
|
|
As you mentioned, | |||
|
feedback
|
|
One more syntactic difference for let vs binding: For binding, all the initial values are evaluated before any of them are bound to the vars. This is different from let, where you can use the value of a previous "alias" in a subsequent definition. user=>(let [x 1 y (+ x 1)] (println y)) 2 nil user=>(def y 0) user=>(binding [x 1 y (+ x 1)] (println y)) 1 nil | |||
|
feedback
|