http://kimh.github.io/clojure-by-example/#scope
I agree with fnordsensei's comment about ordering. You might also think about including this example from the docs which demonstrates bindings are immediately available:
(let [x 1 y x] y) -> 1
http://kimh.github.io/clojure-by-example/#scope