bth_crust 0.1.0

A library for basic mathematical operations.
Documentation
1
2
3
4
5
6
7
8
9
10
use bth_crust;

fn main() {
    let x = 3;
    let y = 5;

    let result = bth_crust::add(x, y);

    assert_eq!(result, 8);
}