Development Ruby

a = "hello"
puts "'hello's object id is #{a.id}"
ObjectSpace.define_finalizer(a) { |id| puts "Destroying #{id}" }
GC.start
a = nil
puts "The original string is now a candidate for collection"
GC.start