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 HTMLFormFu::MyFormRole;
use Moose::Role;

sub custom_role_method {
    my ($self) = @_;

    return sprintf "form ID: %s", $self->id;
}

1;