#!/home/ben/software/install/bin/perl
use lib '/home/ben/projects/Lingua-EN-PluralToSingular/lib';
use Lingua::EN::PluralToSingular 'to_singular';
for (@ARGV) {
    print to_singular ($_);
    print " ";
}
print "\n";

exit;

__END__

=head1 NAME

singular - convert English plurals to singular

=head1 SYNOPSIS

    singular cats dogs sheep octopuses

=head1 DESCRIPTION

See L<Lingua::EN::PluralToSingular> for full details of the conversion.

=cut

# Local variables:
# mode: perl
# End:

