shithub: mc

ref: 22824dad97a68c10ce71cf7e623a12e51be80c43
dir: /test/arraylit-ni.myr/

View raw version
use std
/* checks that we can create arrays without indexed initializers. exits with 2. */
const main = {
	var a = [1, 3, 2]
	std.exit(a[2])
}