[guest - Fri Oct 17 07:02:58 2003]:
Show quoted text> The synopsis says:
> my $Discard = new Games::Cards::Queue $Rummy, "Discard Pile";
Show quoted text> Except ->new also takes a $game argument.
Two changes are needed in the documentation SYNOPSIS part.
a) Change
my $Discard = new Games::Cards::Queue "Discard Pile";
to
my $Discard = new Games::Cards::Queue $Rummy, "Discard Pile";
b)
Change
my $hand = new Games::Cards::Hand "Player $i" ;
to
my $hand = new Games::Cards::Hand $Rummy, "Player $i" ;
Thanks,
RG