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