summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_attr_ivar_set.rb
blob: 410b62c6a4e3f93311953ac670f85045eedb9dc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class C
  attr_accessor :a, :b
  def initialize
    @a = nil
    @b = nil
  end
end
obj = C.new
i = 0
while i<30_000_000 # while loop 1
  i+= 1
  obj.a = 1
  obj.b = 2
end