shithub: mc

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