42_CPP01/ex00/src/randomChump.cpp
2023-07-12 02:30:18 +02:00

9 lines
121 B
C++

#include "Zombie.hpp"
#include <string>
void randomChump(std::string name)
{
Zombie zombie(name);
zombie.announe();
}