let type t = { int, int, int } type t1 = { t, t } type arr = array of t1 var x := new arr[10] of new t1 { new t { 1, 2, 3 }, new t { 4, 5, 6 } } in x[3].1.0 end