struct Point = {
  x: i32
  y: i32
}

export let main() = {
  let p = Point{ x=10, y=20 }
  return p.x
}