[patience]: Add patience directory + flag

This commit is contained in:
2024-09-15 19:02:21 +01:00
parent 3c9ebe0748
commit 95e5d3675d
2 changed files with 0 additions and 0 deletions

11
patience/patience.c Normal file
View File

@ -0,0 +1,11 @@
#include <stdio.h>
#include <unistd.h>
int main() {
char* flag = "Flag: d3c0mp1l3";
printf("The flag will be printed in 1 year's time, please wait...\n");
sleep(31536000);
printf("%s", flag);
}