let type point = {int, int} type ap = array of point var vec_p : ap := new ap[20] of new point{1, 2} in vec_p[10].1 = 60; vec_p[10].1 end