/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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"); return (EXIT_SUCCESS); }