in reply to Referencing Array Slices as Lists?

You can pass a copy of an array slice, but no, not a reference to a slice. A copy would look like:
printref([@ary[0,2,6,10,11]]);

-- Randal L. Schwartz, Perl hacker