RosettaCodeData/Task/Inheritance-Single/Arturo/inheritance-single.arturo
2025-02-27 18:35:13 -05:00

24 lines
357 B
Text

; Base Animal type
define :animal [
init: constructor [name :string]
]
; Dog type inheriting from Animal
define :dog is :animal [
; ...
]
; Cat type inheriting from Animal
define :cat is :animal [
; ...
]
; Lab type inheriting from Dog
define :lab is :dog [
; ...
]
; Collie type inheriting from Dog
define :collie is :dog [
; ...
]