shithub: mc

ref: 6fb7d34b848c598e6398f960dc0a7e240e09a6f5
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])
}