cpp/CPP01/ex00/main.cpp
2024-12-04 17:29:31 +01:00

31 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/20 15:14:34 by erey-bet #+# #+# */
/* Updated: 2023/04/20 15:38:31 by erey-bet ### ########.fr */
/* */
/* ************************************************************************** */
#include "Zombie.hpp"
int main(void)
{
Zombie z1 = Zombie("z1");
Zombie z2 = Zombie("z2");
z1.announce();
z2.announce();
Zombie *nZombie = newZombie("NewZombie");
nZombie->announce();
randomChump("randomChump");
delete(nZombie);
return (0);
}