From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789 use strict;use warnings;use Test::More 'no_plan';for my $i (1..500) { # chuck in some failures ok( $i % 11, "$i % 11 is true" );}
use
strict;
warnings;
Test::More
'no_plan'
;
for
my
$i
(1..500) {
# chuck in some failures
ok(
% 11,
"$i % 11 is true"
);
}