On Sat, Mar 05, 2005 at 02:39:06PM -0700, Luke Palmer wrote:
Garrett Rooney writes:
Garrett Rooney wrote:
Assuming the spec is correct, here's a patch to add some more tests to t/op/string_interpolation.t.
Of course, those should have been todo_is tests... Here's the right patch.
Thanks, applied.
Thanks, implemented as such (r579).
With that change however, these three lines are now the same:
my @x = @a; my @x = @a[]; my @x[] = @a;
Is that correct?
I believe so, since @x[] is an array slice that encludes the entire contents of the array.
-garrett