count = ObjectSpace.each_object { } 100_000.times do |i| String.new c = ObjectSpace.each_object { } if c < count puts "GC - Iteration #{i} - Was #{count} now #{c}" end count = c end