Files
compsoc_hacking_challenges/patience.c
2024-09-14 15:05:23 +01:00

12 lines
213 B
C

#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);
}