From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678 use Test::More;my @classes = qw(Polyglot);foreach my $class ( @classes ) { use_ok $class or BAIL_OUT( "$class did not compile: @!" ); }done_testing();
use
Test::More;
my
@classes
=
qw(Polyglot)
;
foreach
$class
(
) {
use_ok
or BAIL_OUT(
"$class did not compile: @!"
);
}
done_testing();