On page 178, there is a question: what is the value of
(cons rep-car
(cons (cons rep-quote
(cons
(cons rep-a
(cons rep-b
(cons rep-c
(quote ()))))
(quote ())))
(quote ())))
where
rep-car is car
rep-quote is quote
rep-a is a
rep-b is b
rep-c is c
The answer in the book is
(car (quote (a b c)))
But I think the answer should be
(car ((quote ((a b c)))))
Why am I wrong?
No, the answer in the book is right. Note that the expression has 3 occurrences of
(quote ())
, to create 3 lists. Then it conses various atoms onto the lists. Your answer contains 5 lists, not 3.(quote ())
simply returns an empty list.(cons 1 (quote ()))
adds one item to the empty list to yield(1)
.