NAME
Lingua::Features - Natural languages features
VERSION
Version 0.2
DESCRIPTION
This module implements natural languages features in Perl.
SYNOPSIS
use Lingua::Features;
my $struc = Lingua::Features::Structure->new(
type => [ 'verb' ],
verb_type => [ 'main' ],
tense => [ 'pres' ],
mode => [ 'ind' ] ,
pers => [ '3' ] ,
num => [ 'sing' ]
);
print $struc->to_string();
print $struc->to_xml();
COPYRIGHT AND LICENSE
Copyright (C) 2004, INRIA.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHOR
Guillaume Rousse <grousse@cpan.org>