cdr -- r7rs Definition accessor;
Procedure variants:
scheme:base -- (scheme base);scheme -- (scheme);(cdr pair)Returns the contents of the cdr field of
pair. Note that it is an error to take the cdr of the empty list.(cdr '((a) b c d)) ===> (b c d) (cdr '(1 . 2)) ===> 2 (cdr '()) ===> #error
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.