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 MyTestClass;
use base 'Class::Data::Reloadable';
$| = 1;
__PACKAGE__->mk_classdata( 'foo' );
warn "loading MyTestClass\n" if __PACKAGE__->_debug;
1;