PPT Slide
A PLIST (property list) is associated with each Lisp symbol.
-- ( get < symbol > < property name > )
retrieves values for that property.
-- ( setf (get < symbol > < property name > ) < value >)
associates the value with the property.
( setf ( get ' bob ' height ) 60 )
-- ( remprop < symbol > < property name > )
removes this property from this symbol
( remprop ' bob ' height )