Help for this page

Select Code to Download


  1. or download this
    sub setStdout {
        my $new = shift;
        return select( $new );
    }
    
  2. or download this
    sub usleep {
        my $time = shift;
        return select undef, undef, undef, $time;
    }