Files
zig/example/shared_library/mathtest.zig
2017-12-19 02:39:43 -05:00

4 lines
51 B
Zig

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