@a=(6,3,5,7);
This creates an array with 4 elements.
(@a[0..3])
This returns a list with the same four elements as @a.
(@a[0..3])[2..3];
This selects the last two items from a list of 4 items inside the brackets.
print( join( ",", @b ) );
5,7, @a.
:
@a=(6,3,5,7);
@b=(@a[0..3]);
print( "\@b=" . join(",",@b) . "\n" );
@c=@b[2..3];
print( "\@c=" . join(",",@c) . "\n" );
, Perl . , , Perl .