4 releases
0.2.4 | Feb 2, 2024 |
---|---|
0.1.4 | Jan 31, 2024 |
0.1.3 | Jan 31, 2024 |
0.1.0 | Jan 31, 2024 |
#422 in Build Utils
32 downloads per month
2KB
my_addition_crate
A simple crate that provides functionality for adding numbers.
Example usage
use my_addition_crate::add;
let result = add(5, 3);
assert_eq!(result, 8);