On Sat, Nov 20, 2021 at 9:03 PM Marc Chantreux <e...@phear.org> wrote:
> > > method col:sym<quoted> ($/) { .make ~S:g/'""'/"/ } > > That's not working for me. I'm on Moar (2021.06). > > works for me with: > method col:sym<quoted> ($_) { .make: ~S:g/'""'/"/ } > Yeah, you got it wrong the first time. To explicate, the key difference is differently named parameters: ($/) vs ($_). Eirik