//ww:run-exit 7 package main; fn pair() (i32, i32) = { return (3, 4,); }; fn main() i32 = { let a, b = pair(); return a + b; };