Help for this page

Select Code to Download


  1. or download this
    sub get_hashref {
      my %hash;
      return \%hash;
    }
    
  2. or download this
    my %hash;
    sub get_hashref2 {
      return \%hash;
    }