in reply to Golf, Anyone? Stupid output questions
If you need them in a specific order:
One note: I think do while is a really icky construct, but I wanted to reproduce your code.my @keys = qw(CCMT CCOA CDEC CFST CREF CRSP CVEH); do { print $j, ',', join(',', map { master{$j}{$_} || '0' } @keys), "\n"; $j += 60; } while $j <= $l;
|
|---|