let type rec = {x:int, y:int} type arrrec = array of rec var arr:arrrec:= new arrrec[10] of new rec{x=1, y=1} in arr[0].x end