mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
11 lines
159 B
Ruby
11 lines
159 B
Ruby
|
long_lived = []
|
||
|
GC.start
|
||
|
GC.start
|
||
|
|
||
|
i = 0
|
||
|
short_lived = ''
|
||
|
while i<30_000_000 # while loop 1
|
||
|
long_lived[0] = short_lived # write barrier
|
||
|
i+=1
|
||
|
end
|