Cdr

(cdr list) -> pair

Returns everything except the first element of a list or pair.

Examples:

>>(cdr '(1 3 5))
:: (3 5)
>>(cdr '(1 3)
:: (3)

This is a pair, and enclosed in parentheses, because it includes an invisible null.

See Also: car, cadr