Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
standalone
pkg_import
test.zig
pretty
plain
permalink
blame
history
•
6 lines
•
140 B
1
const my_pkg = @import("my_pkg");
2
const assert = @import("std").debug.assert;
3
4
pub fn main() void {
5
assert(my_pkg.add(10, 20) == 30);
6
}