Help for this page

Select Code to Download


  1. or download this
    while(  defined( ( ($x,$y)= recv_data() )[0] )  )
    
  2. or download this
    my( $x, $y )= recv_data();
    while(  defined $x  ) {
        ...
        ( $x, $y )= recv_data();
    }