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

7 lines
140 B
Nim
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
type
Animal = object of RootObj
Dog = object of Animal
Cat = object of Animal
Lab = object of Dog
Collie = object of Dog