From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910111213 #!/usr/bin/perluse strict;use warnings;use Test::Inter;my $o = new Test::Inter;print "The following script will fail due to multiple plans\n\n";$o->plan(2);$o->plan(5);$o->done_testing();
#!/usr/bin/perl
use
strict;
warnings;
Test::Inter;
my
$o
= new Test::Inter;
print
"The following script will fail due to multiple plans\n\n"
;
->plan(2);
->plan(5);
->done_testing();