The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
say "1..2";
my sub foo($a,$b) {
    say $a;
    say $b;
}
knowhow Foo {
    method postcircumfix:<( )>(\$capture) {
        &foo.postcircumfix:<( )>((|$capture));        
    }
}
::Foo.("ok 1","ok 2");