Help for this page

Select Code to Download


  1. or download this
    D:\>cat Demo.pl
    #!perl
    ...
    There's an unexpected/unwanted CR at the end of the line
    
    D:\>
    
  2. or download this
    #!perl
    print "Hello, world\n";
    
  3. or download this
    #!perl
    
    ...
        chomp $line;
        print $output_fh "$line\n";
    }