Perl: BEGIN & END
BEGIN & END
These two special functions allow you to do things as your program starts or as it is finishing
Normally when you exit the program with die() or exit(), no subroutines are called, but END is always called
Provides a nice way to clean up, etc.