2020-05-24 17:04:37 +02:00

12 lines
179 B
C++

#include "animal.h"
#include <iostream>
#include <string>
animal::animal(std::string name) {
this->name = name;
}
void animal::make_sound() {
cout << name << ":" << endl;
}