Returns true if the given number is odd.
Specify the dependencty in Cargo.toml:
```yaml
[dependencies]
is-odd = "~1.0.0"
```
Fetch it with cargo:
```bash
$ cargo build
```
```rust
extern crate is_odd;
use is_odd::IsOdd;
let _i : i32 = 1;
println!("{}", _i.is_odd()); // prints false
```
Copyright © 2018, [nukeop](https://github.com/nukeop).
Released under the [MIT License](LICENSE).