- or download this
my @countries = (
'Algeria',
'Argentina',
'Zaire',
);
- or download this
my %HoH;
open INFILE, '< /path/to/datafile.txt' or die $!;
- or download this
while (<INFILE>) {
( my $quarter, $_) = split ':';
@{$HoH{$quarter}}{@countries} = split " "; # repaired typo, ++petr
+al
}
- or download this
close INFILE or die $!;