Help for this page

Select Code to Download


  1. or download this
    use strict;
    open OUTFILE, ">binfile";
    binmode OUTFILE;
    print OUTFILE "1\n2\n3\n4\n";
    close OUTFILE;
    
  2. or download this
    use strict;
    open OUTFILE, ">binfile";
    ...
    }
    
    close OUTFILE;