19 lines
274 B
Text
19 lines
274 B
Text
Animal ::= Object clone tap {
|
|
;; Methods go here...
|
|
}.
|
|
|
|
Dog ::= Animal clone tap {
|
|
;; Methods go here...
|
|
}.
|
|
|
|
Cat ::= Animal clone tap {
|
|
;; Methods go here...
|
|
}.
|
|
|
|
Lab ::= Dog clone tap {
|
|
;; Methods go here...
|
|
}.
|
|
|
|
Collie ::= Dog clone tap {
|
|
;; Methods go here...
|
|
}.
|