1 2 3 4 5 6
let type rectype = {name : string, age : int} var rec1 : rectype := rectype {name="Nobody", age=1000} in rec1.age <> 10 end