Help for this page

Select Code to Download


  1. or download this
    my %hash = (
      'this_type' => { 'field1' => { REQ => 'N',
    ...
                     },
    # and a lot more records...
    );
    
  2. or download this
    @$hash{$type}->{@sorted_keys}->{data} = @mydata;
    
  3. or download this
    for my $k (@sorted_keys) {
        $hash{$type}->{$k}->{data} = shift @mydata;
    }