The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package # hide from PAUSE indexer
 BusinessLogic;
        use 5.010;
        use Moose;
        use TypeLib;
        sub hello {
                my ($self, $act) = @_;
                say "HELLO ", $act->name;
        }

1;