NAME
Locale::Nationality::en
- English names of nationalities
Synopsis
#!/usr/bin/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}'
Description
Locale::Nationality::en
is a pure Perl module.
It provies you with a list of English names for nationalities.
Distributions
This module is available as a Unix-style distro (*.tgz).
Constructor and initialization
new(...) returns a Locale::Nationality::en
object.
This is the class's contructor.
Usage: Locale::Nationality::en -> new.
new()
does not take any parameters.
Method: names
Returns a sorted array ref of names.
Credits
Guava Studios supplied the list.
Author
Locale::Nationality::en
was written by Ron Savage <ron@savage.net.au> in 2010.
Copyright
Australian copyright (c) 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.