Program Data is Typed, Variables are NOT typed
(setq x 35) ; value of x is integer
(setq x 35.0) ; value of x is float
There are no type restrictions on the value of a variable
The value of a variable may be any lisp object
Every lisp object has a type