| CS 3304: Comparative Languages |
| FP Foundations, Scheme |
| [ Course Documents ] : [ FP Foundations, Scheme ] | ||||||||
|
(car '(a b c)) yields a
(car '((a b) c d)) yields (a b)
(cdr '(a b c)) yields (b c)
(cdr '((a b) c d)) yields (c d)