in reply to (Cygwin) Can't locate XML/LibXSLT.pm in @INC

XML::LibXSLT is a Perl wrapper around the C libxslt library. Cygwin will have installed the latter. Yes, XML::LibXSLT needs to be compiled as parts of it are written in C.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re: (Cygwin) Can't locate XML/LibXSLT.pm in @INC