Help for this page
sub DeleteLast($) { pop @{$_[0]}; };
my @Tmp=(1..10); print "@Tmp\n"; ... }; DeleteLast(\@Tmp); print "@Tmp\n";