1 class TotalCountVisitor 2 attr_reader :result 3 4 def initialize 5 @result = 0 6 end 7 8 def visit(item) 9 @result += 1 10 end 11 end