Subject: | Plural of "moose" should be "moose", not "mooses" |
"The plural of moose is mooses." (should be "moose").
#!/usr/local/bin/perl -w
use strict;
use Lingua::EN::Inflect qw (PL);
my $word = "moose";
print "The plural of ", $word, " is ", PL($word), ".\n";