shithub: mc

ref: 0eae465b2ba82f8a0e49c869bddd37b85ec2e5ae
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])
}