shithub: mc

ref: 930e65474d00875474af8b2a1ca3aaae9d46cace
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])
}