my_rust_lib 0.1.0

A Rust library that provides an add function for both Rust and Python.
Documentation
1
2
3
4
/// Core implementation of the add function in Rust.
pub fn add(a: usize, b: usize) -> usize {
    a + b
}