aboutsummaryrefslogtreecommitdiff
path: root/day2.zig
blob: d4f8f85e5491adb6c34663e313a6fe198a867c6a (plain)
1
2
3
4
5
6
7
8
const std = @import("std");
const Setup = @import("common.zig").Setup;

pub fn main() !void {
    var setup = try Setup.get();
    defer setup.deinit();
    
}