shithub: mc

ref: 91e0b9594c2852d446d238a1678231be4d1c13b5
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])
}