cpp01/ex00/randomChump.cpp

7 lines
115 B
C++
Raw Normal View History

2025-05-12 12:01:05 +02:00
#include "Zombie.hpp"
void randomChump(std::string name) {
Zombie zombie = Zombie(name);
zombie.announce();
}