File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -296,12 +296,11 @@ acts as list of C<Pair>s when stringified). You can also interpolate Perl 6
296
296
code in strings using curly braces. For all the details, see
297
297
L < Interpolation|/language/quoting#Interpolation%3A_qq > .
298
298
299
- C < qw > works as in Perl 5, and can also be rendered as C << <...> >> . E.g.
300
- C < qw/a b c/ > is equivalent to C << <a b c> >> .
299
+ C < qw > works as in Perl 5, and can also be rendered as C << <...> >> . E.
300
+ g. C < qw/a b c/ > is equivalent to C << <a b c> >> .
301
301
302
302
There is also a version of C < qw > that interpolates, which is C < qqw > . So
303
- C < my $a = 42;say qqw/$a b c/; > gives you "42 b c". C < qqw > can also be
304
- rendered as C < <<...>> > .
303
+ C < my $a = 42;say qqw/$a b c/; > gives you "42 b c".
305
304
306
305
Shell quoting is available through C < qx > , but you should note that
307
306
backticks do not do shell quoting as in Perl 5, and Perl variables are
You can’t perform that action at this time.
0 commit comments