rust-learning 0.1.0

Rust learning
Documentation
1
2
3
4
5
6
7

use rust_learning::unit_test::subtract;
#[test]
fn it_adds_two() {
    let result = subtract(2, 1);
    assert_eq!(result, 1);
}