Subject: | Text::Cloze - is configuration option max implemented? |
Date: | Thu, 3 Feb 2011 15:05:43 +0500 |
To: | <bug-text-cloze [...] rt.cpan.org> |
From: | "Shabunin Anton" <ashabunin [...] ics.perm.ru> |
I need to cloze only 1 word in 2nd position:
====================================================
use Text::Cloze;
my $text = "There was nothing. Nothing else to do. Alice soon began.";
my $pos = 2;
my $cloze = Text::Cloze->new (
word => $pos,
max => 1,
);
my $clozed = $cloze->( $text );
print $clozed;
====================================================
I searched in module source file Cloze.pm and did not find any
reference to "max" option
Is it implemented?