Games-Bowling-Scorecard
view release on metacpan or search on metacpan
lib/Games/Bowling/Scorecard.pm view on Meta::CPAN
#pod =method new
#pod
#pod This returns a new scorecard object. It does not take any arguments.
#pod
#pod =cut
sub new {
my ($class) = @_;
my $self = bless { frames => [ ] } => $class;
return $self;
}
#pod =method frames
#pod
#pod my @frames = $card->frames;
#pod
#pod This method returns all of the frames for the game. This will return all
#pod frames in which scores have been recorded, and possibly one final frame with no
( run in 0.392 second using v1.01-cache-2.11-cpan-3b35f9de6a3 )