pub export fn add(a: i32, b: i32) i32 {
return a + b;
}
pub export fn subtract(a: i32, b: i32) i32 {
const std = @import("std");