Re: Q[] question

2025-01-13 Thread ToddAndMargo via perl6-users
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

Re: Q[] question

2025-01-13 Thread Elizabeth Mattijsen
> 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

Re: Q[] question

2025-01-11 Thread ToddAndMargo via perl6-users
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

Re: Q[] question

2025-01-11 Thread Kevin Pye
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

Q[] question

2025-01-11 Thread ToddAndMargo via perl6-users
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