In 1.8, the following code
at_exit { puts "at_exit function" }
ObjectSpace.define_finalizer("string", lambda { puts "in
finalizer" })
exit
output
at_exit function
in finalizer
in 1.9, I just see "at_exit function"
Should I document it that way?
Thanks
Dave