Help for this page

Select Code to Download


  1. or download this
    # Perl server
    
    ...
    $ID = <$client>;
    print "I received $ID\n";
    
  2. or download this
    #Perl client.
    
    ...
    chomp( $ID = <$client> );
    print $client $ID;