# bigint-base10 [![pipeline status](https://gitlab.com/rycwo/bigint-base10/badges/master/pipeline.svg)](https://gitlab.com/rycwo/bigint-base10/commits/master) [![crates.io](https://img.shields.io/crates/v/bigint-base10.svg)](https://crates.io/crates/bigint-base10) ![experimental status](https://img.shields.io/badge/maintenance-experimental-blue.svg) Experimental big integer type for large base-10 integers in Rust. ## Usage Creating a Big Integer is simple. ```rust use bigint_base10::BigInteger; let my_int = BigInteger::new("2147483648"); println!("{}, whoopee, no overflow!", my_int); ``` There really isn't much more than that. For other features, please refer to the [docs][]. [docs]: https://docs.rs/bigint-base10/latest/bigint_base10/ ## License This project is licensed under the [Unlicense](LICENSE) (https://unlicense.org/). ## Contributing Although this project is really just a play-around with Rust and is somewhat experimental - if you have any suggestions please feel free to create an issue or even a pull request.