Help for this page

Select Code to Download


  1. or download this
        select(STDIN); $|++;
        select(STDOUT); $|++;
        select(STDERR); $|++;
    
  2. or download this
    use IO::Handle;
    
        STDOUT->autoflush();
        STDERR->autoflush();
    
  3. or download this
    $| = 1;