zig/test/standalone/pkg_import/pkg.zig
2018-05-29 04:23:38 -04:00

4 lines
53 B
Zig

pub fn add(a: i32, b: i32) i32 {
return a + b;
}