1 2 3 4 5 6 7 8 9 10
const std = @import("std"); pub fn build(b: *std.Build) void { _ = b.addExecutable(.{ .name = "sample-zig", .root_source_file = b.path("src/main.zig"), .target = b.standardTargetOptions(.{}), .optimize = .Debug, }); }