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 1b5a682 commit ec41c3eCopy full SHA for ec41c3e
doc/Language/containers.pod
@@ -229,7 +229,7 @@ a thing happening accidentally.
229
The C<%> and C<@> sigils in Perl 6 generally indicate multiple values
230
to an iteration construct, whereas the C<$> sigil indicates only one value.
231
232
- my @a = 1, 2 3;
+ my @a = 1, 2, 3;
233
for @a { }; # 3 iterations
234
my $a = (1, 2, 3);
235
for $a { }; # 1 iteration
0 commit comments