Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $server = MyWebServer->new(8080);
    my $pid    = $server->background();
    kill 9, $pid;
    
  2. or download this
    kill 9, $$;