15 lines
176 B
Text
15 lines
176 B
Text
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
|
|
];
|