Initial commit

This commit is contained in:
2024-12-01 13:05:22 +01:00
commit 3073fb1df2
10 changed files with 1284 additions and 0 deletions

10
aoc.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include <fstream>
#include <vector>
#include "fmt/format.h"
auto main([[maybe_unused]]int argc, [[maybe_unused]]char const* argv[]) -> int {
std::fstream strm{"./data/2024/day01/sample.txt", std::ios::in};
return 0;
}