Help for this page

Select Code to Download


  1. or download this
    sub myroutine {
            $hash_ref = (shift);
    ...
    }
    
    myroutine(\%thishash);
    
  2. or download this
    die "Not a HASH reference" unless (ref($hash_ref) eq "HASH");