Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    # All of your existing code goes here.
    
    print Dumper \@sorted_recs;
    
  2. or download this
    foreach my $record_ref ( @sorted_recs ) {
        foreach my $rec_line ( @{$record_ref} ) {
    ...
        print SUM2 "\n"; # put that extra newline back, to
                         # delimit the records.
    }