- or download this
use strict;
use warnings;
- or download this
use Modern::Perl;
- or download this
use Modern::Perl;
say 'listes associatives';
my %url = (
...
foreach my $val (values %url) {
print "$val\t";
}
- or download this
say 'liste des abbreviations et URL';
while (my ($key, $ val) = each %url) {
print "$key: $val\t";
}