use pyo3::prelude::*; pub(crate) mod wrapped; #[pymodule] mod tasfile { use pyo3::prelude::*; /// Formats the sum of two numbers as string. #[pyfunction] fn sum_as_string(a: usize, b: usize) -> PyResult { Ok((a + b).to_string()) } }