Games::Mastermind::Cracker::Random - make completely random guesses


Games-Mastermind-Cracker documentation Contained in the Games-Mastermind-Cracker distribution.

Index


Code Index:

NAME

Top

Games::Mastermind::Cracker::Random - make completely random guesses


Games-Mastermind-Cracker documentation Contained in the Games-Mastermind-Cracker distribution.

package Games::Mastermind::Cracker::Random;
use Moose;
extends 'Games::Mastermind::Cracker';

sub make_guess {
    my $self = shift;
    join '', map { $self->random_peg } 1 .. $self->holes;
}

1;

__END__