https://github.com/salva/p5-math-int64
Manipulate 64 bits integers in Perl
https://github.com/salva/p5-math-int64
Last synced: about 2 months ago
JSON representation
Manipulate 64 bits integers in Perl
- Host: GitHub
- URL: https://github.com/salva/p5-math-int64
- Owner: salva
- License: other
- Created: 2009-10-16T17:45:29.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2024-01-21T21:15:00.000Z (over 1 year ago)
- Last Synced: 2024-05-02T00:34:50.746Z (about 1 year ago)
- Language: Perl
- Homepage: http://metacpan.org/release/Math-Int64/
- Size: 277 KB
- Stars: 8
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: COPYING
Awesome Lists containing this project
README
# Math::Int64
Manipulate 64 bits integers in Perl
## CPAN releases
The versions of the module released to CPAN can be compiled and
installed with the usual sequence of commands:perl Makefile.PL
make
make test
make install## Development version
The source code for the development version of **Math::Int64** is
available from [GitHub](https://github.com/salva/p5-Math-Int64).It is managed with [Dist::Zilla](https://metacpan.org/pod/Dist::Zilla).
Briedfly, you can compile it running the following command:
```
dzil build
```test it:
```
dzil test
```and release it (though, you need permissions for that):
```
dzil release
```In order to generate the C API support files, the module
[Module::CAPIMaker](https://metacpan.org/pod/Module::CAPIMaker) is
required.## Copyright and License
Copyright © 2007, 2009, 2011-2015 by Salvador Fandiño
([email protected])Copyright © 2014, 2015 by Dave Rolsky ([email protected])
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.8 or,
at your option, any later version of Perl 5 you may have available.