We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1c689e commit b9168b0Copy full SHA for b9168b0
pod/perlop.pod
@@ -1144,11 +1144,11 @@ As a scalar operator:
1144
if (101 .. 200) { print; } # print 2nd hundred lines, short for
1145
# if ($. == 101 .. $. == 200) { print; }
1146
1147
- next LINE if (1 .. /^$/); # skip header lines, short for
1148
- # next LINE if ($. == 1 .. /^$/);
+ next LINE if 1 .. /^$/; # skip header lines, short for
+ # next LINE if $. == 1 .. /^$/;
1149
# (typically in a loop labeled LINE)
1150
1151
- s/^/> / if (/^$/ .. eof()); # quote body
+ s/^/> / if /^$/ .. eof(); # quote body
1152
1153
# parse mail messages
1154
while (<>) {
0 commit comments