The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Foo::bar;
use base 'Foo';
use strict;
use warnings;

sub index :Index { shift->print("Foo::bar's index") }

sub moo :Action { shift->print('cows go moo') }
sub mood :ActionMatch { shift->print('cows go moo') }

1;