aoc24: day03 tokenizer

This commit is contained in:
2024-12-03 16:43:38 +01:00
parent 616f6bd610
commit c685dcddfb
13 changed files with 328 additions and 155 deletions

7
sol/24/02/entry.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "aoc/aoc.hpp"
#include "fmt/format.h"
auto aoc::entry([[maybe_unused]]std::vector<std::string_view> const& args) -> void {
fmt::print("Hello, World!\n");
}