Returns the first element of a list
(car list)
The first element in list; otherwise nil, if the list is empty.
Command: (car '(a b c))
A
Command: (car '((a b) c))
(A B)
Command: (car '())
nil
See Also
-
The
Point Lists topic in the AutoLISP Developer's Guide.