RosettaCodeData/Task/Inheritance-Single/Kite/inheritance-single.kite

16 lines
176 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
class Animal [
#Method goes here
];
class Dog from Animal [
#Method goes here
];
class Lab from Dog [
#Method goes here
];
class collie from Dog [
#Method goes here
];