2025 framework

This commit is contained in:
Ben Kyd
2025-10-30 09:11:56 +00:00
parent f7072fd78e
commit b89bee9c35
6 changed files with 73 additions and 0 deletions

15
2025/aoc.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include <iostream>
int main(int argc, char** argv) {
std::cout << "Advent of Code 2025 runner" << std::endl;
std::cout << "©Ben Kyd 2025, All Rights Reserved" << std::endl;
std::cout << "\n\n Usage: -d [day] (omit for all)" << std::endl;
// Parse command line
// Find days
// Run days
}