On 1/13/25 2:25 AM, Elizabeth Mattijsen wrote:
On 12 Jan 2025, at 04:46, Kevin Pye wrote:
On Sun, 12 Jan 2025, at 14:01, ToddAndMargo via perl6-users wrote:
Hi All,
Is
Q[...]
the same thing as
<...>
?
No.
Q[…] is the bare quoting construct. There'll be no interpolation of variable
> On 12 Jan 2025, at 04:46, Kevin Pye wrote:
>
> On Sun, 12 Jan 2025, at 14:01, ToddAndMargo via perl6-users wrote:
>> Hi All,
>>
>> Is
>>Q[...]
>>
>> the same thing as
>><...>
>> ?
>
> No.
>
> Q[…] is the bare quoting construct. There'll be no interpolation of
> variables, no splitt
On 1/11/25 7:46 PM, Kevin Pye wrote:
On Sun, 12 Jan 2025, at 14:01, ToddAndMargo via perl6-users wrote:
Hi All,
Is
Q[...]
the same thing as
<...>
?
No.
Q[…] is the bare quoting construct. There'll be no interpolation of variables,
no splitting into words, nothing other than creat
On Sun, 12 Jan 2025, at 14:01, ToddAndMargo via perl6-users wrote:
> Hi All,
>
> Is
> Q[...]
>
> the same thing as
> <...>
> ?
No.
Q[…] is the bare quoting construct. There'll be no interpolation of variables,
no splitting into words, nothing other than creating a bare string.
But Q als
Hi All,
Is
Q[...]
the same thing as
<...>
?
my Str $z=Q[ab#\n]
ab#\n
my Str $z=Q{ab[#\n}
ab[#\n
my Str $z=
ab#\n
my Str $z=
ab[#\n
Many thanks,
-T