shithub: mc

ref: 468265b7b2719d783afc46ea5aa7c9ffa3142970
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])
}