Help for this page

Select Code to Download


  1. or download this
    my %hash = ( 'some' => 'things' ) ;
    callFunction( \%hash ) ;
    
  2. or download this
    sub callFunction {
    my $refhash = shift ;
    my %hash = %$refhash ;
    ...
    }