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