ref: 2f8d3d7f2e4e3592b0a2fce30a4ec218aafe9bce dir: /test/array.myr/
use std /* tests reading and writing to arrays. should exit with 7 */ const main = { var a : int[3] a[0] = 3 a[1] = 4 a[2] = a[0] + a[1] std.exit(a[2]) }