This crate is a checking crate that make the type checking easier in Rust.
```rust use checking::Checker;
fn main() {
let result: bool = Checker::typeof::
match result {
true => println!("Correct type"),
false => println!("Incorrect type"),
}
// Expected result: Correct type
} ```