diff --git a/doc/Language/control.pod6 b/doc/Language/control.pod6 index 02047ec99..ef3decab0 100644 --- a/doc/Language/control.pod6 +++ b/doc/Language/control.pod6 @@ -516,6 +516,14 @@ assign them to an array: my @a = do for 1, 2, 3 { $_ * 2 }; @a.say; # OUTPUT «[2 4 6]␤» my @b = (for 1, 2, 3 { $_ * 2 }); @b.say; # OUTPUT: «[2 4 6]␤» +The C constant will act as a no-op for a loop: + +=for code +say "Not here" for Empty; + +Will not do anything. This constant is +L. + =head1 X X<|lazy list,gather>X<|lazy list,take>