Go to the first, previous, next, last section, table of contents.


Variables

In Lisp symbols are used to represent variables. Each symbol contains a slot which is used to contain the value of the symbol when it is used as a symbol.

The normal way to obtain the current value of a variable is simply to evaluate the symbol it lives in (i.e. write the name of the variable in your program).

Function: symbol-value variable
This function returns the value of the symbol variable in the current environment.


Go to the first, previous, next, last section, table of contents.