1prelude: |
2  long_lived = Array.new(1_000_000){|i| "#{i}"}
3  GC.start
4  GC.start
5benchmark:
6  vm1_gc_short_with_long: |
7    a = '' # short-lived String
8    b = ''
9    c = ''
10    d = ''
11    e = ''
12    f = ''
13loop_count: 30000000
14