8 lines
241 B
C++
8 lines
241 B
C++
#include "aoc.hpp"
|
|
#include "aoc/utils.hpp"
|
|
#include "fmt/format.h"
|
|
|
|
auto aoc24::day08([[maybe_unused]]std::span<char const*> const& args) -> std::expected<void, aoc::error> {
|
|
return aoc::make_error("day 8", std::errc::not_supported);
|
|
}
|