const std = @import("std"); pub fn build(b: *std.Build) void { const exe1 = b.addExecutable(.{ .name = "day2a", .root_module = b.createModule(.{ .root_source_file = b.path("day2a.zig"), .target = b.graph.host, }), }); b.installArtifact(exe1); const exe2 = b.addExecutable(.{ .name = "day2b", .root_module = b.createModule(.{ .root_source_file = b.path("day2b.zig"), .target = b.graph.host, }), }); b.installArtifact(exe2); }