12 lines
242 B
Zig
12 lines
242 B
Zig
|
const std = @import("std");
|
||
|
|
||
|
pub fn build(b: *std.Build) void {
|
||
|
const exe = b.addExecutable(.{
|
||
|
.name = "numbers",
|
||
|
.root_source_file = b.path("numbers.zig"),
|
||
|
.target = b.host,
|
||
|
|
||
|
});
|
||
|
b.installArtifact(exe);
|
||
|
}
|