1export fn addInts(a: i32, b: i32) i32 {
2 return a + b;
3}
4
5var forty_two: i32 = 42;
6export fn fortyTwo() i32 {
7 return forty_two;
8}