Variables
*********
A "variable" is a name used in a program to stand for a value.
Nearly all programming languages have variables of some sort. In the
text of a Lisp program, variables are written using the syntax for
symbols.
In Lisp, unlike most programming languages, programs are represented
primarily as Lisp objects and only secondarily as text. The Lisp
objects used for variables are symbols: the symbol name is the variable
name, and the variable's value is stored in the value cell of the
symbol. The use of a symbol as a variable is independent of its use as
a function name. Note:Symbol Components.
The Lisp objects that constitute a Lisp program determine the textual
form of the program--it is simply the read syntax for those Lisp
objects. This is why, for example, a variable in a textual Lisp program
is written using the read syntax for the symbol that represents the
variable.