Initial commit

This commit is contained in:
2024-12-01 13:05:22 +01:00
commit 44dec23c98
9 changed files with 1258 additions and 0 deletions

6
aoc.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include "fmt/format.h"
auto main([[maybe_unused]]int argc, [[maybe_unused]]char const* argv[]) -> int {
fmt::print("Hello, World!\n");
return 0;
}