NAME
Art::World::Util - Generating all kind of data for the Art::World
SYNOPSIS
use Art::World::Util;
say Art::World::Util->new_person->fake_name;
#==> Firtname Lastname
say Art::World::Util->new_math->pick( 10, 1000 ));
#==> 666
DESCRIPTION
Art::World::Util provide useful generation tools for automated Agents creation.
Methods
fake_name
Generate a complete person name using Faker.
pick
Pick an integer between a range that can be passed as a parameter. Mostly a way to not have to memorize $min + int ( rand ( $max - $min )).
AUTHOR
Sébastien Feugère <sebastien@feugere.net>
COPYRIGHT AND LICENSE
Copyright 2006-2021 Sebastien Feugère
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.