10 lines
134 B
C++
Raw Normal View History

2020-05-24 17:04:37 +02:00
#include "cat.h"
#include <iostream>
#include <string>
void cat::make_sound() {
animal::make_sound();
cout << "meow" << endl;
}