15 lines
259 B
Text
15 lines
259 B
Text
class Animal{
|
|
//functions go here...
|
|
}
|
|
class Dog extends Animal {
|
|
//functions go here...
|
|
}
|
|
class Cat extends Animal {
|
|
//functions go here...
|
|
}
|
|
class Lab extends Dog {
|
|
//functions go here...
|
|
}
|
|
class Collie extends Dog {
|
|
//functions go here...
|
|
}
|