Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    # should never get here
    print "made it past ctrl-C\n";
    exit 0;
    
  2. or download this
    use strict;
    use warnings;
    ...
       kill 21, $pid;
       print "\n";
    }