Hiding of Bindings
The most recent existing local binding hides all other existing local bindings.
The global value can be reached, even within the scopes of local bindings.
> (define x 77); global
77
> (define (getx) x)
> (define (foo x)
(+ x (getx)) )
> (foo 1900)
1977
Previous slide
Next slide
Back to first slide
View graphic version