//ww:run-exit 7 package main; type pt = struct { x: i32, y: i32 }; fn main() i32 = { let p: pt = pt{x=3, y=4}; return p.x + p.y; };