#divide #operations #basic #arithmetic #arithmetic-operations

已删除 devarith

一个简单的数学crate,用于基本的算术运算

1 个不稳定发布

0.1.2 2023年10月25日
0.1.1 2023年10月25日
0.1.0 2023年10月25日

#12 in #divide

MIT 许可证

2KB

用法

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

无运行时依赖