Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    open(FILE, '>', 'foo.bar') or die "Daim!";
    print FILE "\n";
    close FILE;
    
  2. or download this
    use strict;
    use warnings;
    ...
    binmode FILE;
    print FILE "\n";
    close FILE;