10 lines
176 B
Java
Raw Normal View History

2020-05-24 17:04:37 +02:00
public class Program {
public static void main(String[] args) {
Dog d = new Dog("buster");
Cat c = new Cat("mittens");
d.make_sound();
c.make_sound();
}
}