in reply to Lingua Splitter

This year-old bug report says qq{The "words" and "paragraphs" methods return references but the documentation portrays them as returning lists}, so try
my @words = @{ $splitter->words($parsed) };

or

my $words = $splitter->words($parsed); foreach my $x (@$words) { print "$x\n"; }