Help for this page

Select Code to Download


  1. or download this
    sub function {
       my ($hash_ref) = @_;
    ...
    }
    
    function(\%hash);
    
  2. or download this
    sub function {
       our %hash; local *hash = \$_[0];
    ...
    }
    
    function(\%hash);
    
  3. or download this
    sub function {
       my %hash = @_;
    ...
    }
    
    function(%hash);