-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
23 lines (20 loc) · 1.09 KB
/
main.cpp
File metadata and controls
23 lines (20 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ysoroko <ysoroko@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/09/20 20:54:51 by ysoroko #+# #+# */
/* Updated: 2021/09/20 20:54:51 by ysoroko ### ########.fr */
/* */
/* ************************************************************************** */
#include "Zombie.hpp"
int main(void)
{
Zombie stack_zombie("Stack Zombie");
Zombie *heap_zombie = newZombie("Heap Zombie");
randomChump("Random Chump Zombie");
delete heap_zombie;
return (0);
}