Help for this page

Select Code to Download


  1. or download this
    local ($bak_id)=shift;
    local ($acc_bal)=shift;
    
  2. or download this
    my ($bak_id)=shift;
    my ($acc_bal)=shift;
    
  3. or download this
    my $bak_id  = shift;
    my $acc_bal = shift;
    
  4. or download this
    my ($bak_id, $acc_bal) = @ARGV;