| Games-Nonogram documentation | Contained in the Games-Nonogram distribution. |
Games::Nonogram - solve and analyze Nonogram
use Games::Nonogram;
Games::Nonogram->bootstrap;
This is a simple utility to solve a puzzle called 'Nonogram' (i.e. 'Paint by numbers', 'Griddlers' or whatever). See http://en.wikipedia.org/wiki/Nonogram for details of the puzzle.
bootstraps command line solver or solver shell, according to the value(s) of @ARGV. See appropriate pods for details.
Games::Nonogram::CommandLine, Games::Nonogram::Shell
Kenichi Ishigaki, <ishigaki at cpan.org>
Copyright 2007 by Kenichi Ishigaki
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Games-Nonogram documentation | Contained in the Games-Nonogram distribution. |
package Games::Nonogram; use strict; use warnings; our $VERSION = '0.01'; sub bootstrap { my $class = shift; my $target = @ARGV ? 'CommandLine' : 'Shell'; my $package = "Games::Nonogram::$target"; eval qq{ require $package }; die $@ if $@; $package->bootstrap; } 1; __END__