devarith 0.1.2

A simple math crate for basic arithmetic operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## Usages

```rust
use devarith::divide;
fn main() {
    let a = 10.0;
    let b = 0.0;

    match divide(a, b) {
        Ok(result) => println!("{} / {} = {}", a, b, result),
        Err(e) => println!("Error: {}", e),
    }
}
```