aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/lib.rs
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2025-09-12 00:53:11 +0800
committerGitHub <noreply@github.com>2025-09-12 00:53:11 +0800
commit5135876b5e2a6c40232414ea0b7eb875fa225cf0 (patch)
tree4e1718f42394c9f3384b8f91429068a6e1e980db /src/lib.rs
downloadOneRoll-5135876b5e2a6c40232414ea0b7eb875fa225cf0.tar.gz
OneRoll-5135876b5e2a6c40232414ea0b7eb875fa225cf0.zip
Initial commit
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..166cb09
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,16 @@
+use pyo3::prelude::*;
+
+#[pyfunction]
+fn sum_as_string(a: usize, b: usize) -> PyResult<String> {
+ Ok((a + b).to_string())
+}
+
+#[pyclass]
+pub struct Base {}
+
+#[pymodule]
+fn _core(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
+ m.add_function(wrap_pyfunction!(sum_as_string, m)?)?;
+ m.add_class::<Base>()?;
+ Ok(())
+} \ No newline at end of file