Re: Binding slices

2005-06-14 Thread Piers Cawley
Luke Palmer <[EMAIL PROTECTED]> writes: > On 6/14/05, Piers Cawley <[EMAIL PROTECTED]> 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. I t

Re: Binding slices

2005-06-14 Thread Luke Palmer
On 6/14/05, Piers Cawley <[EMAIL PROTECTED]> 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

Binding slices

2005-06-14 Thread Piers Cawley
Following a conversation with Chip on IRC, is this my @y := @foo[0..][1]; legal?