import "modules/types.spooky";
import "modules/math.spooky";
fn main() -> int {
let p: Point;
p.x = 1;
p.y = 2;
return add(p.x, p.y);
}