Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    die "unable to fork: $!" unless defined $pid;
    
    exec "./client &";
    
  2. or download this
    #!/usr/bin/perl
     use IO::Socket;
    ...
       }
       close $client;
     }
    
  3. or download this
    #!/usr/bin/perl -w
    use IO::Socket;
    ...
       }
     close $server;
     }
    
  4. or download this
    if  ($players_ready == 2)   { print $client "GO\n"; $play_game = 1; }