The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use 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();