Help for this page

Select Code to Download


  1. or download this
    package MyWebServer;
    
    ...
    }
    
    1;
    
  2. or download this
    use strict;
    use warnings;
    ...
    open( my $fh, '>', 'pid.txt' ) || die;
    print $fh $pid;
    close $fh;
    
  3. or download this
    package MyWebServer;
    
    ...
    }
    
    1;