Class Precedence List
Rule1: A class always has precedence over its super classes
Rectangle has precedence over basic-part
Basic-part has precedence over standard-object
Standard-object has precedence over T
Precedence list that satisfies all these constraints:
- (rectangle basic-part standard-object T)
(defclass basic-part () …)
(defclass rectangle (basic-part) …)