6 lines
169 B
Text
6 lines
169 B
Text
|
|
(defstruct animal)
|
||
|
|
(defstruct (dog (:include animal)))
|
||
|
|
(defstruct (lab (:include dog)))
|
||
|
|
(defstruct (collie (:include dog)))
|
||
|
|
(defstruct (cat (:include animal)))
|