File: Foo.pm

package info (click to toggle)
libmodule-install-xsutil-perl 0.25-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 216 kB
  • ctags: 150
  • sloc: perl: 1,746; ansic: 40; makefile: 13
file content (30 lines) | stat: -rwxr-xr-x 477 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package Foo;

use 5.005_03;
$VERSION = '1.23';

use XSLoader;
XSLoader::load(__PACKAGE__, $VERSION);

use B::Hooks::OP::Annotation;

1;

__END__

=head1 NAME

Foo - A testing module for Module::Install::XSUtil

=head1 AUTHOR

Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt>.

=head1 LICENSE AND COPYRIGHT

Copyright (c) 2009, Goro Fuji (gfx). Some rights reserved.

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut