15 lines
328 B
Zig
15 lines
328 B
Zig
const std = @import("std");
|
|
|
|
const day = @import("day");
|
|
|
|
pub fn main() !void {
|
|
var gpa: std.heap.DebugAllocator(.{}) = .init;
|
|
defer std.debug.assert(gpa.deinit() == .ok);
|
|
|
|
const allocator = gpa.allocator();
|
|
|
|
std.debug.print("{s}\n", .{day.title});
|
|
try day.run(allocator);
|
|
std.debug.print("\n", .{});
|
|
}
|
|
|