Help for this page

Select Code to Download


  1. or download this
    use open OUT => ':raw';
    
  2. or download this
    use open OUT => ':raw:perlio';
    
  3. or download this
    BEGIN {
        if ($] >= 5.008) {
    ...
            'open'->import(OUT=>":raw:perlio");
        }
    }
    
  4. or download this
    binmode($s)
        unless ($] >= 5.008);