Initial commit

This commit is contained in:
2026-08-31 02:52:04 -05:00
commit 5d71bd4878
4 changed files with 491 additions and 0 deletions

19
build.zig Normal file
View File

@@ -0,0 +1,19 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const mod = b.addModule("numz", .{
.root_source_file = b.path("src/numz.zig"),
.target = target,
});
mod.addImport("numz", mod);
const mod_tests = b.addTest(.{
.root_module = mod,
});
const run_mod_tests = b.addRunArtifact(mod_tests);
const test_step = b.step("test", "Run tests");
test_step.dependOn(&run_mod_tests.step);
}