Re: the new raku.org is really beautiful (and tought about spurt)

[email protected] (Elizabeth Mattijsen) Sun, 7 Sep 2025 22:24:58 +0200
Newsgroups perl.perl6.users
Message-ID <[email protected]>
> On 7 Sep 2025, at 20:31, Marc Chantreux <[email protected]> wrote:
>>> with "example.txt".IO.slurp {
>>> s/Hello/Hi/;
>>> .spurt: $filename;
>>> }
>> 
>> Now *that* I find to be an interesting idea.  The oneliner would then become:
>> 
>>  "example.txt".IO.slurp.subst("Hello","Hi").spurt($filename)
>> 
>> which has a nice left-to-right feel.
> 
> Which would be indeed my syntax of choice.

Now a PR: https://github.com/rakudo/rakudo/pull/5949