Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    sub exiter { exit(42); }
    
    1;
    
  2. or download this
    use warnings;
    use strict;
    ...
    }
    
    throws_ok( sub { exiter () }, qr/exited with code 42/, q{killer exited
    +});