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