shithub: mc

ref: 950ee74350cdb6b7ff170234fd9341f1b094d171
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])
}