in reply to Re^2: Using File::Find
in thread Using File::Find

You're missing a backslash...

find(\&wantedTS, "$dir");
package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name