8 lines
171 B
C++
8 lines
171 B
C++
#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");
|
|
}
|
|
|