Re: Binding slices
by Luke Palmer other posts by this author
Jun 14 2005 6:41AM messages near this date
Re: new mailing list: perl6-general?
|
Re: %hash1 >>...<< %hash2
On 6/14/05, Piers Cawley <pdcawley@[...].uk> wrote:
> Following a conversation with Chip on IRC, is this
>
> my @y := @foo[0..][1];
>
> legal?
Definitely not. But it sure would be nice if this:
my @y := @foo[0...][1];
were.
Luke
|