Re: What is the pipe symbol doing to my array?

[email protected] (ToddAndMargo via perl6-users) Mon, 3 Nov 2025 16:25:44 -0800
Newsgroups perl.perl6.users
Message-ID <[email protected]>
On 11/3/25 10:07 AM, ToddAndMargo via perl6-users wrote:
> Hi Sean,
> 
> Thank you!
> 
> My big worry with flattening is when a parameter passed to run has a 
> space in it.
> 
>      run "a", "b c", "d", ...
> 
> that flattening will send it as
> 
>      run "a", "b", "c", "d", ...
> 
> -T

Hi Sean,

Yary wrote me off line that "run" also flattens what
it get,  which removes my concerns with how parameters
with spaces in them are dealt with.  I have uses
spaces before and it works.

-T