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

#!/usr/bin/perl
use strict;
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();