请原谅总的NewView问题,但为什么@game_分数总是为零?
#bowling.rb class Bowling @game_score = 0 def hit(pins) @game_score = @game_score + pins end def score @game_score end end