aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2024-03-04 03:58:29 +0800
committer简律纯 <i@jyunko.cn>2024-03-04 03:58:29 +0800
commitcff0ce84eef922912bcc277cd613e96f3571575e (patch)
tree434a0080d1fd8472310a12673d4112b811c3d730 /src
parent967ce6dc6fb3329b93293862c4e9178b8ce87091 (diff)
downloadHydroRollCore-cff0ce84eef922912bcc277cd613e96f3571575e.tar.gz
HydroRollCore-cff0ce84eef922912bcc277cd613e96f3571575e.zip
refactor!: rewrite in rust
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..9c76abf
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,14 @@
+use pyo3::prelude::*;
+
+/// Formats the sum of two numbers as string.
+#[pyfunction]
+fn sum_as_string(a: usize, b: usize) -> PyResult<String> {
+ Ok((a + b).to_string())
+}
+
+/// A Python module implemented in Rust.
+#[pymodule]
+fn hydro_roll_core(_py: Python, m: &PyModule) -> PyResult<()> {
+ m.add_function(wrap_pyfunction!(sum_as_string, m)?)?;
+ Ok(())
+}