An Introduction to Programming in Emacs Lisp
Table of Contents
1 Lists
In Lisp, both data and code are represented with lists.
Atoms are indivisible elements in a list. A list can have 0 atoms, like this: (). This is called 'empty list'. An empty list is both an atom and a list.
