RosettaCodeData/Task/Inheritance-Single/Nim/inheritance-single.nim

7 lines
140 B
Nim
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
type
Animal = object of RootObj
Dog = object of Animal
Cat = object of Animal
Lab = object of Dog
Collie = object of Dog