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
|