# Copyrights 2007-2009 by Mark Overmeer. # For other contributors see ChangeLog. # See the manual pages for details on the licensing terms. # Pod stripped from pm file by OODoc 1.06. use warnings; use strict; package MyExampleData; use vars '$VERSION'; $VERSION = '2.01'; use base 'Exporter'; our @EXPORT = qw/$namedb/; our $namedb = { Netherlands => { male => [ qw/Mark Tycho Thomas/ ] , female => [ qw/Cleo Marjolein Suzanne/ ] } , Austria => { male => [ qw/Thomas Samuel Josh/ ] , female => [ qw/Barbara Susi/ ] } ,German => { male => [ qw/Leon Maximilian Lukas Felix Jonas/ ] , female => [ qw/Leonie Lea Laura Alina Emily/ ] } }; 1;