The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

package MyTest;
has list => (
is => 'ro',
isa => 'ArrayRef',
default => \ '[11]',
handles_via => 'Array',
handles => {
push => 'push',
pop => 'pop',
reset => 'reset',
},
);
1;