shithub: mc

ref: 26da0e6f98ac76f3930ed68649b5fbfe87c06ec4
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])
}