[Home]LISP programming language/Talk

HomePage | LISP programming language | Recent Changes | Preferences

Showing revision 3
"The language is still in use in 2001 and is therefore the oldest programming language still currently in use (as of writing in 2001)."

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.


Yes, I deliberately stuck my neck out on that one. It did cause me to go and do some research though. You didn't even attempt to back up your Fortran claim but it appears to be true! --drj


Function CAR in LISP program returns the first element in a list.

   (car '(a b c d))
   Returns a
Function 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 b
Working from the inside out is the same as (car (cdr '(a b c d)))


HomePage | LISP programming language | Recent Changes | Preferences
This page is read-only | View other revisions | View current revision
Edited August 23, 2001 5:26 pm by Robbe (diff)
Search: