Will it be possible (or sane even) to bind a variable to an array slice
e.g

  ## correct syntax?
  my @array = << a list of values >>;

  my @array_slice := @array[ 1 .. @array.end ];

Or would this merely bind @array_slice to the list returned by the slice,
or would it DTRT (in my eyes at least) and bind it to that particular
slice of @array?

Dan Brook

Reply via email to