Acme-Math-XS-LeanDist
view release on metacpan or search on metacpan
lib/Acme/Math/XS/LeanDist.pm view on Meta::CPAN
package Acme::Math::XS::LeanDist;
our $VERSION = '0.100';
require Exporter;
use base 'Exporter';
our @EXPORT = qw(add subtract);
# Commented out for distribution by Inline::Module::LeanDist
#use Inline::Module::LeanDist C => 'DATA';
# XSLoader added for distribution by Inline::Module::LeanDist:
require XSLoader; XSLoader::load(__PACKAGE__, $VERSION);
1;
__DATA__
__C__
long add(long a, long b) {
return a + b;
}
long subtract(long a, long b) {
return a - b;
}
( run in 1.098 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )