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!'); } }