1export var exported_var: i32 = 9999;
2
3export fn add(a: i32, b: i32) i32 {
4 return a + b;
5}