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