:ACCESSOR Slot Option
Define a function for accessing the slot
Advantage: Slot name not advertised
- Accessor functions are a good idea
(defclass rectangle (square)
((height :initform 0 :initarg :height
> (setf (height my-rectangle) 15)
> (slot-value my-rectangle ‘height)