ref: 9186d1ce9b8e6bd1443d6c2e24f378dedbaa5a30 dir: /test/arraypack.myr/
use std /* test for accidentally packed values */ const a = [ (1, "foo"), (2, "bar"), (3, "baz"), ] const main = { for x in a[:] std.put("{}", x) ;; std.put("\n") }