Help for this page
1. my $sheet; 2. my $count = -1; ... 10. @$row = split( /,/, $_ ); 11. push @$sheet, $row; 12. }
foreach my $row ( sort { $a->[1] <=> $b->[1] } @$sheet ) { print join( ',', @$row ), "\n";