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

package Duplicate;
use strict;
has $.key is ro;
has $.key;
# has $.something;
sub new {
bless [] => shift;
}
1;
__END__