Skip to content

Commit c8a4859

Browse files
committed
update of task T/Text_processing_2
1 parent 4f34b54 commit c8a4859

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

T/Text_processing_2

+2-6
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ my @res;
99
use v5.36;
1010
use experimental 'for_list';
1111

12-
#use strict;
13-
#use warnings;
14-
#use feature 'say';
15-
1612
#use List::MoreUtils 'natatime';
1713
use constant FIELDS => 49;
1814

@@ -21,8 +17,8 @@ binmode STDIN, ':crlf';
2117
# Windows.
2218

2319
my ($line, $good_records, %dates) = (0, 0);
24-
open F, '<', 'ref/text-proc.txt';
25-
while ($_ = <F>) {
20+
open my $F, '<', 'ref/text-proc.txt';
21+
while ($_ = <$F>) {
2622
++$line;
2723
my @fs = split /\s+/;
2824
@fs == FIELDS or die "$line: Bad number of fields.\n";

0 commit comments

Comments
 (0)