shithub: mc

ref: 2d9fe7100209acb431e392d58e4cf4eccfde00b7
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")
}