- or download this
@HoH{keys %hash} = values %hash
- or download this
$HoH{$unit_num} = $hash{$unit_num};
- or download this
%hash = (
$unit_num => {
...
);
@HoH{keys %hash} = values %hash
- or download this
push @{ $HoH{$unit_num}{$event_nm} }, $event_date
- or download this
$HoH{$unit_num} ||= {};
$HoH{$unit_num}{$event_nm} ||= [];
push @{ $HoH{$unit_num}{$event_nm} }, $event_date;
- or download this
print Dumper( \%HoH );