1 2 3 4 5 6 7
var array: const [3]Int := [3]Int{ 1, 2, 3 } i: const Int := array[2] begin assert(i = 2) end.