Files
HelloWorld/Animal.cpp
2025-01-24 16:42:13 -03:00

17 lines
196 B
C++

#include "Animal.hpp"
#include <iostream>
using namespace std;
Animal::Animal(){
}
Animal::~Animal(){
}
void Animal::acorda(){
cout << "Só acorda, sem fazer barulho" << endl;
}