let
Mostly equivalent to let*.
Local variables defined by the same call to let can't depend on each other in the initialization clauses.
(let* ((x 0)
(y (+ x 5)))
(print y))
Previous slide
Next slide
Back to first slide
View graphic version