On Fri, 30 Jul 2010 14:31:31 +0200 Leon Timmermans <[email protected]> wrote:
> On Thu, Jul 29, 2010 at 8:30 PM, R. Dresens <[email protected]> wrote: > > > And what about this?... > > my $x = [3, 4]; my @y = 1, 2, |$x, 5, 6; say @y.perl; > I think that you meant to do is this: > > my $x = [3, 4]; my @y = 1, 2, @($x), 5, 6; say @y.perl; Yes, that works! Thanks, Greetings, Raymond.
