I'm not totally sure if this is a bug, a quirk, or simply a bad practice, but this is what happens:
[0] > my @nope = [["a","b"]]; @nope.push: ["b","c"]
[a b [b c]]
[1] > my @yipee = []; @yipee.push: [["a","b"]]; @yipee.push: ["b","c"]
[[a b] [b c]]
So if you inialize an array with a list of lists, it gets Slipped, forcing to use 2 steps to initalize it. Is there something I'm missing here?
["b","c"]you get[a b [b c]]?