Page MenuHomec4science

animal.hh
No OneTemporary

File Metadata

Created
Sat, Aug 24, 02:16

animal.hh

#include <iostream>
class Animal {
public:
void scream() {
std::cout << name;
std::cout << ": AAAAAAA" << std::endl;
}
private:
std::string name;
};

Event Timeline