From 42c8b93f3ec18790d2b8ee45940c136dfbacd7ff Mon Sep 17 00:00:00 2001 From: Seoxi Ryouko Date: Wed, 28 May 2025 09:35:26 -0500 Subject: [PATCH] free --- README.md | 4 ++++ game.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..68bc996 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +ragavan vs bolt +=============== +[this video](https://youtu.be/BAkFMdFsj1U) showed up in my youtube recommendations. +rather than watch it, i decided to attempt to solve the format diff --git a/game.c b/game.c index 9b5a0f2..547e2a0 100644 --- a/game.c +++ b/game.c @@ -54,6 +54,7 @@ int main(int argc, char **argv) { printf("%d\n", max_life); Player *stupid_fucking_monkey = new_player(max_life, Ragavan); Player *sparky = new_player(max_life, Bolt); - + free(stupid_fucking_monkey); + free(sparky); return 0; }