Help for this page

Select Code to Download


  1. or download this
    open(my $fh, '>', file);
    binmode($fh);
    print $fh ...
    
  2. or download this
    require v5.8.0;
    open($fh, '>:raw', file);
    print $fh ...
    
  3. or download this
    binmode(STDOUT);
    print ...