# isnt-even-or-odd Returns false if the given number is even or odd. ## Install Specify the dependencty in Cargo.toml: ```yaml [dependencies] isnt-even-or-odd = "1" ``` Fetch it with cargo: ```bash cargo build ``` ## Usage ```rust use isnt_even_or_odd::IsntEvenOrOdd; let _i : i32 = 1; println!("{}", _i.isnt_even_or_odd()); // prints true ``` ## About ### License Copyright © 2018, [dsgallups](https://github.com/dsgallups). Released under the [MIT License](LICENSE).