summaryrefslogtreecommitdiff
path: root/impls/monero_rust/src
diff options
context:
space:
mode:
Diffstat (limited to 'impls/monero_rust/src')
-rw-r--r--impls/monero_rust/src/main.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/impls/monero_rust/src/main.rs b/impls/monero_rust/src/main.rs
new file mode 100644
index 0000000..0e76a13
--- /dev/null
+++ b/impls/monero_rust/src/main.rs
@@ -0,0 +1,10 @@
+fn main() {
+ unsafe {
+ MONERO_DEBUG_test0();
+ }
+ println!("Called MONERO_DEBUG_test0 successfully.");
+}
+
+extern "C" {
+ fn MONERO_DEBUG_test0();
+}