zig/test/add.zig
2015-11-24 13:51:36 -07:00

4 lines
59 B
Zig

export fn add(a: i32, b: i32) -> i32 {
return a + b;
}