Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    
    my @sorted_keys = sort { $country_names{$a} cmp $country_names{$b} } k
    +eys %country_names;
    print join("\n",@sorted_keys);