The 'first' function returns the first element of the expression.
If the first expression is itself a list, then the sublist is returned.
If the list is
(first '(a b c)) ; returns A (first '((a b) c d)) ; returns (A B) (first NIL) ; returns NIL (first 'a) ; error: bad argument type (setq children '(amanda ben)) ; set up variable CHILDREN (first children) ; returns AMANDA
See the
first
function in the