Help for this page

Select Code to Download


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