Zig basic project - bipartition.
This commit is contained in:
parent
adb9a6e44c
commit
13f7c3a822
3 changed files with 70 additions and 0 deletions
11
current/algorithms/numbers-zig/build.zig
Normal file
11
current/algorithms/numbers-zig/build.zig
Normal 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue