You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.0 KiB
23 lines
1.0 KiB
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/06/14 07:59:29 by narnaud #+# #+# */
|
|
/* Updated: 2022/06/14 09:46:09 by narnaud ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
# include "Zombie.hpp"
|
|
|
|
int main(void)
|
|
{
|
|
Zombie *marc = newZombie("Marc");
|
|
marc->announce();
|
|
delete marc;
|
|
randomChump("Aurel");
|
|
if (DEBUG)
|
|
system("leaks apocalypse");
|
|
}
|
|
|