RosettaCodeData/Task/Inheritance-Single/PureBasic/inheritance-single-1.purebasic
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

21 lines
277 B
Text

Interface Animal
Eat()
Sleep()
EndInterface
Interface Cat Extends Animal
ChaseMouse()
EndInterface
Interface Dog Extends Animal
Bark()
WagTail()
EndInterface
Interface Lab Extends Dog
Swim()
EndInterface
Interface Collie Extends Dog
HeardSheep()
EndInterface