Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Revert "Mention that qqw// can also be written as << >>"
This reverts commit d13b36d.
  • Loading branch information
lizmat committed Jun 12, 2018
1 parent d57a155 commit 961110a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions doc/Language/5to6-perlop.pod6
Expand Up @@ -296,12 +296,11 @@ acts as list of C<Pair>s when stringified). You can also interpolate Perl 6
code in strings using curly braces. For all the details, see
L<Interpolation|/language/quoting#Interpolation%3A_qq>.
C<qw> works as in Perl 5, and can also be rendered as C<< <...> >>. E.g.
C<qw/a b c/> is equivalent to C<< <a b c> >>.
C<qw> works as in Perl 5, and can also be rendered as C<< <...> >>. E.
g. C<qw/a b c/> is equivalent to C<< <a b c> >>.
There is also a version of C<qw> that interpolates, which is C<qqw>. So
C<my $a = 42;say qqw/$a b c/;> gives you "42 b c". C<qqw> can also be
rendered as C< <<...>> >.
C<my $a = 42;say qqw/$a b c/;> gives you "42 b c".
Shell quoting is available through C<qx>, but you should note that
backticks do not do shell quoting as in Perl 5, and Perl variables are
Expand Down

0 comments on commit 961110a

Please sign in to comment.