Help for this page

Select Code to Download


  1. or download this
    use vars qw(%country);
    
  2. or download this
    +{
        af => 'afghanistan',
    ...
        be => 'belgium',
        bg => 'bulgaria',
    };
    
  3. or download this
    my $country = do "countries.pl";
    die "Error loading country data: $@\n" if $@;
    
  4. or download this
    print "$country->{af}\n";