The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Lingua::Features - Natural languages features

VERSION

Version 0.1

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>