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