Re: [perl #53902] my @var1, @var2 not working

2008-05-10 Thread Patrick R. Michaud
On Sat, May 10, 2008 at 09:43:38AM +0100, Nicholas Clark wrote: > On Fri, May 09, 2008 at 06:47:12PM -0500, Patrick R. Michaud wrote: > > On Thu, May 08, 2008 at 11:28:36AM -0700, Moritz Lenz wrote: > > > > my @a, @b; say @a > > > Scope not found for PAST::Var '@b' > > > > Rakudo has this one cor

Re: [perl #53902] my @var1, @var2 not working

2008-05-10 Thread Nicholas Clark
On Fri, May 09, 2008 at 06:47:12PM -0500, Patrick R. Michaud wrote: > On Thu, May 08, 2008 at 11:28:36AM -0700, Moritz Lenz wrote: > > Rakudo as of r27393 can't handle multiple declarations in a single "my": > > > > > my (@a, @b); say @a > > Scope not found for PAST::Var '@a' > > We'll work on t

Re: [perl #53902] my @var1, @var2 not working

2008-05-09 Thread Patrick R. Michaud
On Thu, May 08, 2008 at 11:28:36AM -0700, Moritz Lenz wrote: > Rakudo as of r27393 can't handle multiple declarations in a single "my": > > > my (@a, @b); say @a > Scope not found for PAST::Var '@a' We'll work on this one. > > my @a, @b; say @a > Scope not found for PAST::Var '@b' Rakudo has

[perl #53902] my @var1, @var2 not working

2008-05-09 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #53902] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=53902 > Rakudo as of r27393 can't handle multiple declarations in a single "my": > my (@a, @b);