Help for this page

Select Code to Download


  1. or download this
    #   print "$c";
        print chr($c);
    #   print $out $c;
        print $out chr($c);
    
  2. or download this
        while (my $line = <$in>) {
            $line =~ s/\n/\r/;  # replace LF with CR in the line
            print $out $line;   # and output it
        }