1const std = @import("std");
2
3pub fn build(b: *std.Build) void {
4    _ = b.addModule("add", .{
5        .root_source_file = b.path("add.add.zig"),
6    });
7}