Bellow an example of eulers identity is shown.
e^(i * pi) = -1
```rust use num::*;
asserteq!( im(std::f32::consts::PI).exp().re, -1. ); ```
Heavy inspiration has been taken from crates listed bellow.