RosettaCodeData/Task/Inheritance-Single/Latitude/inheritance-single.latitude
2023-07-01 13:44:08 -04:00

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...
}.