vote up 1 vote down star

Following is a exercise from SICP. I couldn't figure it out on my own. Can some why help me understand?

Type following code into interpreator:

(car ''abracadabra)

And it print out 'quote'. Why?

flag
3  
No a real lisp-programmer, but it could be because 'symbol really just is a shorthand for (quote symbol). – gimpf Sep 10 at 12:58

1 Answer

vote up 6 vote down check

As gimpf said, 'abracadabra = (quote abracadabra). You can verify this by typing ''abracadabra to the REPL, which will print (quote abracadabra).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.