Help for this page

Select Code to Download


  1. or download this
    # \015 is carriage return.
    print("Hello\015you\n");
    
  2. or download this
    while (<>) {
       s/\015//g;
       print $_;
    }