Help for this page

Select Code to Download


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