advent-of-code-2023/src/day03.zig

9 lines
155 B
Zig
Raw Normal View History

2020-11-26 15:46:03 -06:00
const std = @import("std");
const Allocator = std.mem.Allocator;
const assert = std.debug.assert;
const print = std.debug.print;
pub fn main() !void {
}