2020-05-24 17:04:37 +02:00

12 lines
241 B
TypeScript

import {Animal} from './animal';
export class Dog extends Animal {
// override the method make_sound
public make_sound() {
// implement own functionality
console.log(`doggo ${this.name} says:`);
console.log('woof!');
}
}