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

[email protected] (Brian Duggan) Sat, 13 Sep 2025 09:18:20 -0400
Newsgroups perl.perl6.users
Message-ID <aMVvHBY8WsdWysvK@haraka>
> > 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.

The feed operator already sort of fits well here

    "example.txt".IO.slurp.subst('Hello','Hi') ==> spurt($filename)

Brian