Specialization of Slots
(defclass labelled-rectangle (rectangle)
(font :initform (make-font ‘(modern 10))
:accessor rectangle-font)))
(defclass roman-rectangle (labelled-rectangle)
((font :initform (make-font ‘(times-roman 12)))))
Most specific :initform is used.