Help for this page

Select Code to Download


  1. or download this
    &callsub(%hashtopass); 
    
    sub callsub {
    ...
           print "$k => $hashread{$k}\n";
       }
    }
    
  2. or download this
    &callsub(\%hashtopass, $otherStuff);
    
    sub callsub {
    ...
           print "$k => $hashref->{$k}\n";
       }
    }