is_42 0.1.0

A fun game where you guess what number the computer has chosen.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# is-42


Simple, blazingly fast way of checking if a variable is equal to 42.

## Example


```rust
let number = 42;

assert!(is_42::is_42(number));
```