shithub: mc

ref: 71e8fc4ea9aec9f7cbb15424d6f612d636e3656b
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])
}