devarith 0.1.1

A simple math crate for basic arithmetic operations.
Documentation
devarith-0.1.1 has been yanked.

devarith

Usages

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),
    }
}