1const my_pkg = @import("my_pkg"); 2const assert = @import("std").debug.assert; 3 4pub fn main() void { 5 assert(my_pkg.add(10, 20) == 30); 6}