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 2511723 commit 79ab0d7Copy full SHA for 79ab0d7
doc/Language/101-basics.pod6
@@ -37,7 +37,7 @@ Here's one way to solve that problem in Perl 6:
37
38
for $file.lines -> $line {
39
next unless $line; # ignore any empty lines
40
-
+
41
my ($pairing, $result) = $line.split(' | ');
42
my ($p1, $p2) = $pairing.words;
43
my ($r1, $r2) = $result.split(':');
@@ -72,7 +72,7 @@ Beth has won 1 matches and 4 sets
72
Every Perl 6 program should begin with a line similar to C<use v6;>. This line
73
tells the compiler which version of Perl the program expects. Should you
74
accidentally run the file with Perl 5, you'll get a helpful error message. 6.c
75
-is an example of a Perl 6 version.
+is an example of a Perl 6 version.
76
77
=head3 X<C<statement>|statement (Basics)>
78
0 commit comments