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