Files
banan-os/userspace/aoc2023/full/main.cpp
Bananymous 8b5e437936 AOC2023: Implement day25 part1
7 starts missing + partly broken day22. I might finish these soon...
2023-12-26 20:04:42 +02:00

21 lines
265 B
C++

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
for (int i = 1; i <= 25; i++)
{
if (i == 22)
continue;
printf("day %d:\n", i);
char command[128];
sprintf(command, "/bin/aoc2023/day%d", i);
system(command);
}
return 0;
}