import { Dog } from "./dog"; import { Cat } from "./cat"; const d = new Dog('buster'); const c = new Cat('mittens'); d.make_sound(); c.make_sound();