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