BEE Lisp Functions Reference

<list> CDR (L)

Returns list, consisting of pointers to all elements of list L, except the first one.

If L is empty or consists of a single element, function returns empty list.

Example:

(CDR ‘(A B C))                          ; returns (B C)

(CDR ‘(A))                                ; returns ()

(CDR ‘())                                  ; returns ()