shithub: mc

ref: 71af8b2acb1e7eefa2101f0074e4fe0a631a6220
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])
}