in reply to Re^7: Combining 3 files
in thread Combining 3 files

I thought that it was a simplified version of:

my @beef = @{ $dataset->{ $col[0] } };

Replies are listed 'Best First'.
Re^9: Combining 3 files
by Anonymous Monk on Jun 27, 2011 at 15:43 UTC
    Whatever gave you that impression?

      I thought that this was building @data ???

      for my $dataset (@data) { my @out = push @{ $data[ $fileCount ]->{ shift @col } }, \@col; }
        Why? Just how many times do you need to build @data?