From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
package MyTest;
my $Test = Test::Builder->new;
sub ok
{
$Test->ok(@_);
}
1;