shithub: mc

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