Help for this page

Select Code to Download


  1. or download this
    print() on closed filehandle FH at
    
  2. or download this
    use warnings;
    use strict;
    ...
    open (FH, '>out.txt');
    print FH "start" . $type . "end"; 
    close FH;