Games/JumbleCreator version 0.01 ================================ SYNOPSIS use Games::JumbleCreator; my $jumble = Games::JumbleCreator->new; $jumble->num_words(6); $jumble->dict('/home/doug/crossword_dict/unixdict.txt'); my @jumble = $jumble->create; foreach my $word (@jumble) { print "$word\n"; } DESCRIPTION Creates words (normal and jumbled) for jumble word game. Default number of words is 5. Default dictionary is '/usr/dict/words'. REQUIREMENTS Perl version 5.000 or higher. Developed using version 5.6.1 on Linux. WHERE CAN I GET IT? www.cpan.org/authors/id/D/DS/DSPARLING INSTALLATION To install this module type the following: perl Makefile.PL make make test make install DEPENDENCIES None. DOCUMENTATION Documentation is included in the module as POD. A man file should be created in the installation process. CHANGES See the Changes file. AUTHOR Douglas S. Sparling DISCLAIMER This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. SUPPORT Questions, bug reports, useful code bits, and suggestions for Games::JumbleCreator should be sent to me at doug@dougsparling.com. COPYRIGHT AND LICENCE Copyright (C) 2002 Douglas S. Sparling. All rights reserved. This program is free software; you can redistribuite it and/or modify it under the same terms as Perl itself.