zig/test/add.zig

4 lines
44 B
Zig
Raw Normal View History

2015-08-06 06:46:40 +08:00
int add(int a, int b) {
return a + b;
}