mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
7 lines
140 B
Zig
7 lines
140 B
Zig
const my_pkg = @import("my_pkg");
|
|
const assert = @import("std").debug.assert;
|
|
|
|
pub fn main() void {
|
|
assert(my_pkg.add(10, 20) == 30);
|
|
}
|