type p = { x : int, y : string }

let p : p = { x = 42, y = "Dalek" }<>

let px : int = p.x

let py : string = p.y