Help for this page

Select Code to Download


  1. or download this
    # INCORRECT
    sub something {
    ...
      # do something without buffering
      $|--;
    }
    
  2. or download this
    #CORRECT
    sub something {
    ...
      # do something without buffering
      $| = $flush;
    }