Help for this page

Select Code to Download


  1. or download this
    sub catcher {
        local $SIG{__DIE__} = sub { print "Caught 1!\n"; };
        catcher2();
    ...
    }
    
    catcher();
    
  2. or download this
    $ perl bomb.pl 
    Caught 2!
    Foo at bomb.pl line 30.