DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
What Is Stronger ? Kill Or Rescue ?
begin
Thread.current.kill
exit(1)
#`kill -9 #{$$}` # this will successfully kill you
puts "after kill"
ensure
puts "HA HA!"
end
always interesting to play with this kind of code.
and discover how much ensure means ENSURE !!!!
Ruby: Great Language.





