Help for this page

Select Code to Download


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