my_rust_lib 0.1.0

A Rust library that provides an add function for both Rust and Python.
Documentation
1
2
3
4
5
mod rust_impl;       // Import the Rust implementation
mod python_wrapper;  // Import the Python wrapper

// Re-export the Rust function if needed
pub use rust_impl::add;