The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package MyTest::Extend::Plugin::Bar;
use strict;

sub new {
	my $class = shift;
	my %self = @_;

	return bless \%self, $class;
}


sub nork {
	return $_[0]->{'nork'};
}
1;