in reply to Re^2: UTF-8 for Everything
in thread UTF-8 for Everything

But everything utf8::all does is achievable with core modules. Take a look at the utf8::all source code and replicate what it does.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name