Oh, now I see: you were asking that question in another thread. <<>> is equivalent to qq:ww:v as mentioned here:
https://docs.raku.org/syntax/%3C%3C%20%3E%3E#index-entry-%3Aval_%28quoting_adverb%29 and as stated here: https://docs.raku.org/language/quoting the adverb :ww splits the string into words using whitespace characters as separators. Now, being "\n" a whitespace character, your string <<aaa\n bbb\n ccc\n>> was split in three parts ("aaa", "bbb", "ccc") with no whitespace characters in them. On Sun, Nov 15, 2020 at 12:25 AM ToddAndMargo via perl6-users < perl6-us...@perl.org> wrote: > On 2020-11-14 13:39, Fernando Santagata wrote: > > What do you mean by putting the \n in the variable? > > $ p6 'my @x = <<aaa\n bbb\n ccc\n>>; for @x {"$_".print};' > aaabbbccc > > Why are the \n's not being resolved in the above? > > Why do I have to add an \n to the print line? > > $ p6 'my @x = <<aaa\n bbb\n ccc\n>>; for @x {"$_\n".print};' > aaa > bbb > ccc > > Oh I see, because they are not actually in the cell: > > $ p6 'my @x = <<aaa\n bbb\n ccc\n>>; dd @x' > Array @x = ["aaa", "bbb", "ccc"] > -- Fernando Santagata