B
Ben Morrow
Quoth Brad Baxter said:I think the following thread in P5P is related to this topic, in that it
allows for this:
my $var->[2] = 'val';
which admittedly is slightly different.
Yes... I at least would conceptualize that statement as
(my $var)->[2] = 'val';
which doesn't have the same problem of needing two different values for
the subject of the my.
Ben