Re: spurt and array question

2020-11-15 Thread ToddAndMargo via perl6-users
On 2020-11-14 23:56, Fernando Santagata wrote: Oh, now I see: you were asking that question in another thread. I was asking why the \n came out literal in another thread. It did not help I made a syntax boobo. I never got the other ways of writing out the array to work either.

Re: Junctions wrapped in singleton lists

2020-11-15 Thread yary
A few more experiments, for what it's worth. I have no answers. > { any(1,2) }.^name Block > any(1,2).^name Junction > (1|-1).^name Junction > ((1|-1) ... *)[^3] ((any(1, -1)) (any(2, 0)) (any(3, 1))) > (1|-1 ... *)[^3] ((any(1, -1)) (any(2, 0)) (any(3, 1))) > 1|-1 ... 3 ((any(1, -1)) (any(2, 0)) 3