Help for this page

Select Code to Download


  1. or download this
    my $count = 0;
    open($fh,"<",$sentence_file) or die "Could not open $sentence_file: $!
    +";
    ...
        print "Sentence $count\n";
    }
    close($fh);
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    
    local $/ = "\015";