Help for this page

Select Code to Download


  1. or download this
      open (MYOUTFILE, ">outfile.txt") or die "Can't create outfile: $!";
    
    ...
        # Other code
    
      close MYOUTFILE;
    
  2. or download this
       if ($i==0){
          print MYOUTFILE "$A,$B,n/a\n";
          print STDOUT "$A,$B,n/a\n";
        }