On Oct 2, 2017 1:18 PM, ToddAndMargo <toddandma...@zoho.com> wrote:
Hi All,
I am writing up a keeper note on <<>> and such. This example
puzzles me. Why the space?
Example of <<>> (double quote and allow insertion of variables into
strings):
$ perl6 -e 'my $x="abc"; my $y=<<xyz{$x}def>>; say "\$x=$x \$y=$y";'
$x=abc $y=xyz abc def
Many thanks,
-T
On 10/02/2017 03:10 PM, Rick Bychowski wrote:
> I don't know if that is expected behaviour for qqww ( aka <<>>) or a
bug, but you can use qqw to get the results you want.
What I am after is examples if <<>> juxtaposed against
other ways of doing it.