Zig basic project - bipartition.

This commit is contained in:
Tomasz Półgrabia 2025-01-31 11:46:43 +01:00
parent adb9a6e44c
commit 13f7c3a822
3 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,11 @@
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);
}