summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_gc_short_lived.rb
blob: e78bca56685caeb797a1f2b9f46135dfe8bdf84a (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