in reply to Re: Using aliases in for loops or not?
in thread Using aliases in for loops or not?
I wonder if it really is an array slice...
printing @x[0] will create a warning because an array slice is used. @$x[0] will not...
On the other hand, @$x[0, 1] will return two elements what suggest that it is indeed an array slice...
|
|---|