cdr
(cdr pair)
Description:
The second object of pair (being the cons of two objects)
Arguments:
pair -- the cons of two objects
Returns: boolean
Examples:
(cdr (cons 1 2)) => 2
Back to index