Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class ScoreKeeper
- def initialize
- @total_score = @count = 0
- end
- def <<(score)
- @total_score += score
- @count += 1
- self
- end
- def average
- fail "No scores" if @count.zero?
- Float(@total_score) / @count
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment