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

use strict;
use warnings FATAL => 'all';
use Moose;
use Scalar::Util qw( blessed );
sub invoke_instance_method : Abstract;
sub get_instance_field : Abstract;
sub set_instance_field : Abstract;
sub create_instance : Abstract;
no Moose;
1;