summaryrefslogtreecommitdiff
path: root/code/snippets/at_exit.rb
blob: 170521070e24a686cd6a8d8ac000f0066c63c925 (plain)
1
2
3
4
5
# When Kernel#exit is invoked, before exiting Ruby invokes any blocks
# defined by Kernel#at_exit.
at_exit { puts 'Last!' }
exit