aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm1_gc_short_lived.rb
blob: 2bdb6ff93223c69967ad6d49d5431a2377b5ef74 (plain)
1
2
3
4
5
6
7
8
9
10
i = 0
while i<30_000_000 # while loop 1
  a = '' # short-lived String
  b = ''
  c = ''
  d = ''
  e = ''
  f = ''
  i+=1
end