shithub: mc

ref: 133e0113e998eacbb469db5e773552ed69c85a55
dir: /test/arraypack.myr/

View raw version
use std

/* test for accidentally packed values */
const a = [
	(1, "foo"),
	(2, "bar"),
	(3, "baz"),
]

const main = {
	for x : a[:]
		std.put("{}", x)
	;;
	std.put("\n")
}