diff options
| author | xander <xander@biltopia.org> | 2025-12-08 23:43:38 +0100 |
|---|---|---|
| committer | xander <xander@biltopia.org> | 2025-12-08 23:43:38 +0100 |
| commit | 2de1dc926bbcbab2b2bbc6ef739d0236881170ac (patch) | |
| tree | c0e23b4f16b65213c8cb0ed24c26671ce30a8809 /src/main.zig | |
| parent | 516e6ed4a9066fa43d6159b2a0ec58416ab28013 (diff) | |
| download | aoc2025-2de1dc926bbcbab2b2bbc6ef739d0236881170ac.tar.xz aoc2025-2de1dc926bbcbab2b2bbc6ef739d0236881170ac.zip | |
solve day8
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig index 79979e4..e4e9a53 100644 --- a/src/main.zig +++ b/src/main.zig @@ -8,6 +8,7 @@ const day04 = @import("day04.zig"); const day05 = @import("day05.zig"); const day06 = @import("day06.zig"); const day07 = @import("day07.zig"); +const day08 = @import("day08.zig"); pub fn main() !void { if (std.os.argv.len != 3) { @@ -41,6 +42,7 @@ pub fn main() !void { 5 => day05.solve(args[2], stdin, allocator), 6 => day06.solve(args[2], stdin, allocator), 7 => day07.solve(args[2], stdin, allocator), + 8 => day08.solve(args[2], stdin, allocator), else => print("Day not yet implemented", .{}), }; } |
