Help for this page

Select Code to Download


  1. or download this
    sub make_hash {
      my %hash;
    ...
    
      return \%hash;
    }
    
  2. or download this
    my $thisDataset = make_hash();
    
  3. or download this
    sub do_stuff_to_hash {
      foreach (keys %{$_[0]}) {
    ...
    }
    
    do_something_with_hash($thisDataset);
    
  4. or download this
    $thisDataset{$curr_month};
    
  5. or download this
    $thisDataset->{$curr_month};