Experimental big integer type for large base-10 integers in Rust.
Creating a Big Integer is simple.
```rust use bigint_base10::BigInteger;
let myint = BigInteger::new("2147483648"); println!("{}, whoopee, no overflow!", myint); ```
There really isn't much more than that. For other features, please refer to the docs.
This project is licensed under the Unlicense (https://unlicense.org/).
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.