binnev-rust-template 0.1.1

A template for new Rust projects with up-to-date tooling
Documentation
1
2
3
4
5
6
7
8
Subtracts the second number from the first and returns the result.

# Examples

```
let result = binnev_rust_template::subtract(5.0, 3.0);
assert_eq!(result, 2.0);
```