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

package One::Two;
use strict;
our %EX = (
two => ['all']
);
use One 'all';
sub new { bless {}, $_[0] }
sub two { 'Whats' }
1;