DEBSOURCES
Skip Quicknav
sources / ruby-bourne / 1.5.0-1 / test / simple_counter.rb
12345678910111213
class SimpleCounter attr_reader :count def initialize @count = 0 end def increment @count += 1 end end