12 lines
179 B
C++
Raw Normal View History

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