File Coverage

blib/lib/Lingua/HPSG.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 1 1 100.0
total 9 11 81.8


line stmt bran cond sub pod time code
1             package Lingua::HPSG;
2              
3 1     1   32312 use warnings;
  1         2  
  1         37  
4 1     1   6 use strict;
  1         2  
  1         88  
5              
6             =head1 NAME
7              
8             Lingua::HPSG - Head-driven Phrase Structure Grammar
9              
10             =head1 VERSION
11              
12             Version 0.03
13              
14             =cut
15              
16             our $VERSION = '0.03';
17              
18              
19             =head1 SYNOPSIS
20              
21             Summary of what the module does: nothing.
22              
23             =head1 FUNCTIONS
24              
25             =head2 new
26              
27             Nada
28              
29             =cut
30              
31 0     0 1   sub new {
32              
33             }
34              
35             =head1 AUTHOR
36              
37             C.J. Adams-Collier, C<< >>
38              
39             =head1 BUGS
40              
41             Please report any bugs or feature requests to C, or through
42             the web interface at L. I will be notified, and then you'll
43             automatically be notified of progress on your bug as I make changes.
44              
45              
46              
47              
48             =head1 SUPPORT
49              
50             You can find documentation for this module with the perldoc command.
51              
52             perldoc Lingua::HPSG
53              
54              
55             You can also look for information at:
56              
57             =over 4
58              
59             =item * RT: CPAN's request tracker
60              
61             L
62              
63             =item * AnnoCPAN: Annotated CPAN documentation
64              
65             L
66              
67             =item * CPAN Ratings
68              
69             L
70              
71             =item * Search CPAN
72              
73             L
74              
75             =back
76              
77              
78             =head1 ACKNOWLEDGEMENTS
79              
80              
81             =head1 COPYRIGHT & LICENSE
82              
83             Copyright 2009 C.J. Adams-Collier, all rights reserved.
84              
85             This program is free software; you can redistribute it and/or modify it
86             under the same terms as Perl itself.
87              
88              
89             =cut
90              
91             1; # End of Lingua::HPSG