Help for this page
my @shift = qw/a shifty array/; sub foo { print @{shift}; ... } foo [qw/A mere example/]; __END__