Files
cpp01/ex00/main.cpp
2025-09-14 13:52:18 +02:00

28 lines
1.0 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/09/05 16:42:21 by aortigos #+# #+# */
/* Updated: 2025/09/14 13:50:00 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#include "Zombie/Zombie.hpp"
int main()
{
Zombie *z;
z = newZombie("Angel");
z->announce();
randomChump("Estudiante42");
delete(z);
return (0);
}