zig/test/standalone/load_dynamic_library/add.zig

4 lines
56 B
Zig

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