# File counter.rb, line 4 def initialize(initial_value = 0) @counter = initial_value end
# File counter.rb, line 8 def inc @counter += 1 end