In
LISP, a list is a bunch of nested
conses, like so:
(hello . (world . -Peter))
This list contains the atoms 'hello, 'world, and '-Peter.
Lists are commonly shown in an abbreviated form:
(hello world -Peter)
They are the third most fundamental data structure in LISP.