shithub: mc

ref: 73518d58457d543258e344b96a8f4b13ccd16882
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 in a[:]
		std.put("{}", x)
	;;
	std.put("\n")
}