prep for 2025

This commit is contained in:
2025-12-03 16:26:25 +01:00
parent c238e9b4fb
commit 49d82b8f90
64 changed files with 179 additions and 8356 deletions

14
2025/day01.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include <span>
static auto entry([[maybe_unused]]std::span<char const*> const& args) -> void {
}
auto main([[maybe_unused]]int argc, [[maybe_unused]]char const* argv[]) -> int {
try {
entry({argv, std::next(argv, argc)});
} catch (std::exception const& e) {
(void)e;
return 1;
}
return 0;
}