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

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.996 second using v1.00-cache-2.02-grep-82fe00e-cpan-1925d2aa809 )