I am confused as to how car and cdr work on lists. Here is an example of what I have tried:

(define sample (read))
(display sample)
(display (car sample))
(display (cdr sample))
(display (car (cadr sample)))
(display (cdr (cdr sample)))

On entering the value '(A B C D E F), here is what I get:

'(a b c d e f)
quote
((a b c d e f))
a
()

I am not able to understand that how quote can be the car of sample. Also, why does (cdr sample) output ((a b c d e f))?

Language: DrScheme - R5RS - Scheme

link|improve this question

feedback

1 Answer

up vote 13 down vote accepted

If you wanted to simply type the list (a b c d e f), you should just type (a b c d e f). What you typed, instead, was (quote (a b c d e f)) because the ' operator is short for (quote ...).

Your list literally has the first element quote and the second element (a b c d e f). Of course, when you're writing source code, you need the quote to prevent the S-expressions from being executed.

link|improve this answer
Thank you. I am a complete newbie to Scheme. This helps ! – darkie15 Jul 3 '10 at 20:08
feedback

Your Answer

 
or
required, but never shown

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