shithub: mc

ref: 762cc86bee0020fac7636e6a2cc662a8dc200616
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])
}