ref: 1c61d05cba15d7e93d3207d4f3ab3c6043d63b77 dir: /test/arraypack.myr/
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") }