I try to understand how works the quote phenomenon in Scheme. In particular, I would like to understand when are bound free variables of quoted terms.
For instance, when I write
(define q 'a)
(define a 42)
(eval q)
it returns 42. Thus I deduce that binding time is at runtime. But in this case, why does this code fail
(let ((q 'a))
(let ((a 42))
(eval q)
)
)
and returns
unbound variable: a
Can someone explain me what is the binding time model of quoted terms (is is comparable to MetaOCaml for instance? (I don't think so)) and the difference between define and let?
Scheme has lexical scope discipline, not a dynamic binding discipline.
Your top-level
define
definitions behave as though creating a binding in a top-level lexical environment.The second code snippet actually creates two lexical environments, one nested inside the other. So where (not "when")
q
is bound,a
is still unbound. But the real question is, which environment is used byeval
?Your implementation behaves as though it uses the definitional environment, or a top level environment, but certainly not the current lexical environment, for evaluating the symbol
'a
, which is the value of theq
variable. The variableq
has a clear binding lexical environment, created by itslet
form -- but where does a symbol'a
's binding reside? How are we to know?Details should be in the documentation.