On Sat, Nov 14, 2020 at 2:03 PM ToddAndMargo via perl6-users
<perl6-us...@perl.org> wrote:
> Just out of curiosity, why is the \n printed out literally here?
> p6 'my @x = <"aaa\n","bbb\n","ccc\n">; for @x {print @_};'

Your 'word quoting' <> is sort of like single quotes -- it keeps the
literal stuff.  You could
use <<>> which is more like double quotes,

Curt

Reply via email to