| Data-RandomPerson documentation | Contained in the Data-RandomPerson distribution. |
Data::RandomPerson::Names::SpanishMale - A list of male names
This document refers to version 0.4 of Data::RandomPerson::Names::SpanishMale, released Sept 13th, 2005
use Data::RandomPerson::Names::SpanishMale; my $n = Data::RandomPerson::Names::SpanishMale->new(); print $n->get();
Returns a random element from a list of male names culled from Chris Pound's language machines page at http://www.ruf.rice.edu/~pound/#scripts.
Create the Data::RandomPerson::Names::SpanishMale object.
Returns a random name from the list.
Returns the size of the list
Perl 5
None
None so far
None
None
Peter Hickman (peterhi@ntlworld.com)
Copyright (c) 2005, Peter Hickman. All rights reserved. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself.
| Data-RandomPerson documentation | Contained in the Data-RandomPerson distribution. |
# $Id: SpanishMale.pm,v 1.3 2005/05/22 17:02:30 peterhickman Exp $ package Data::RandomPerson::Names::SpanishMale; use strict; use warnings; use base 'Data::RandomPerson::Names'; use Data::RandomPerson::Choice; sub new { my ($class) = @_; my $self = bless {}, $class; $self->{choice} = Data::RandomPerson::Choice->new(); $self->{choice}->add_list( qw/ adulfo agustin alfonso almerique alonso alvaro alvito ambroz amentario amor andres angel anselmo ansuro antonio arias arnao auderico aznaro ballelo baltasar bartolome beltran berenguer bernaldino blas borredan castañon cino cosme cresconio cristobal damian diego domingo dulcido ederoño eliseo emilio enrique ermegildo escobar esteban estevan fadrique fagildo felipe fernando fernán flazino francisco froila garcilaso garcía gascon gaspar gelmiro geraldo godesteo gombal gomesindo gonsalvo gonzalo gudesteo gunsedal guntrodo guter gómez hernan hernando iago ignacio isaio isidro iñigo jaime jeronimo jesus jimeno joaquin jorge juan julio ladron lazaro leon lope lorenco lucas lugo luis manuel marcos martin mateo melchor mendo menendo mergildo miguel munio muño nicolao nuño ochoa olivar ordoño osmundo osoro oveco pancho pascual pedro pelayo pepi rafael raimundo ramiro ramón ranemiro rapinato recaredo recessvindo rodrico rodrigo ruberte rubin salamo salvadór sancho santiago sanzo sarracino sebastian sesmiro silvestre suero tadio telo teodemiro tiago timoteo tomas tome vedillo vela velasco vellito vermudo vidal vimaro vincente vistruario / ); return $self; } 1; __END__