In a message dated 24 Sep 2002, Aaron Sherman writes: > That doesn't really work. Because now you introduce the case where: > > $x = (1,2,3); > @y = (1,2,3); > $z = [1,2,3]; > push @a, $x, @y, $z, (1,2,3), [1,2,3]; > > Behaves in ways that will take hours to explain to newbies, and I assure > you it ain't WIM. Not even a little bit.
Hmm. What *I* would mean, anyway, would be that @a gets pushed nine elements: ([1,2,3], 1, 2, 3, [1,2,3], 1, 2, 3, [1,2,3]). And that works under my proposal. But I may have an idiosyncratic idea of WIM. :-) But I think Dan's right. I think we should just let this drop for now, let Larry take a look at the mess we've gotten ourselves into, and let him decide whether he needs to Rule-2 something or not. Trey