| NAME |
| Synopsis |
| Description |
| Distributions |
| Constructor and initialization |
| Method: names |
| Credits |
| Author |
| Copyright |
Locale::Nationality::en - English names of nationalities
#!/usr/bin/env perl
use strict;
use warnings;
use Locale::Nationality::en;
# ------------------
print map{"$_\n"} @{Locale::Nationality::en -> new -> names};
Or, as a 1-liner:
perl -MLocale::Nationality::en -e 'print map{"$_\n"} @{Locale::Nationality::en -> new -> names}'
Locale::Nationality::en is a pure Perl module.
It provies you with a list of English names for nationalities.
This module is available as a Unix-style distro (*.tgz).
new(...) returns a Locale::Nationality::en object.
This is the class's contructor.
Usage: Locale::Nationality::en -> new.
new() does not take any parameters.
Returns a sorted array ref of names.
Guava Studios supplied the list.
Locale::Nationality::en was written by Ron Savage
in 2010.
Australian copyright © 2010, Ron Savage.
All Programs of mine are 'OSI Certified Open Source Software';
you can redistribute them and/or modify them under the terms of
The Artistic License.