Actually Fortran is older by about 2 years, and is still in serious use. Not many (if any) modern Fortran programs are actually compatible with the original version of Fortran, but that is probably true for LISP as well.
Cobol is still used to some extent and is about the same age as LISP. I could probably be talked into believing LISP is a few months older.
There may be a few ALGOL programs still out there doing useful work in some obscure part of Europe, and again, ALGOL is about the same age as LISP, perhaps slightly older.
Function CAR in LISP program returns the first element in a list.
(car '(a b c d)) Returns aFunction CDR would return everything but the first element in a list.
(cdr '(a b c d)) returns (b c d)There are of course many variations of this.
(cadr '(a b c d)) Returns bWorking from the inside out is the same as (car (cdr '(a b c d)))