in reply to Syntax for Slice of dereferenced array
my $list = [0..10]; print @$list[3..6]; [download]
You can also enclose the reference within braces, eg. for multidimensional structures:
my @list = ([0..10]); print @{$list[0]}[3..6]; [download]
MeowChow s aamecha.s a..a\u$&owag.print