1 | sub popmany { # See previous foil for use |
2 | my $aref; # A local scalar to hold pointer to array |
3 | my @retlist = (); # An array to hold returned list |
4 | # Pop last element in each input array: |
5 |
foreach $aref ( @_ ) { # loop over arguments
|
6 | } |
7 | # @retlist holds last element of each array passed |
8 | return @retlist; |
9 | } |