ArmanriazirusterRore0308Mismatted Types

 Note that we haven’t added any type annotations to the definition: 
 if we then try to call the closure twice, using a String as an argument the first time and a u32 the second time, we’ll get an error.
```
fn main() {
    let example_closure = |x| x;

    let s = example_closure(String::from("hello"));
    let n = example_closure(5);
}
```
ArmanRiazi