Remember, array indexes are zero-based:
my @foo = qw(one two three four); my @slice = @foo[1,3]; # (one, three)
[EMAIL PROTECTED] = @foo[1,3]; # ('two', 'four')
my $ref = [EMAIL PROTECTED];
@slice = @{$ref}[2,4]; # (two, four)
@slice = @{$ref}[2,4]; # ('three', undef)
And that, ladies and gents, is my nit-pick for the day. ;-)
sherm--
