shithub: mc

ref: 31356a321f79afc2dd2cc5a6b7c9c72f77cf3394
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])
}