shithub: mc

ref: 2551a75889ee7eee8d9cb222c9d4f3111fccfa85
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])
}