created example lib for sake of testing

This commit is contained in:
2025-02-20 15:52:42 +00:00
parent 76f070af8b
commit 294e6f0e33
12 changed files with 288 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
[package]
name = "lib_example"
version.workspace = true
edition.workspace = true
[dependencies]
+5
View File
@@ -0,0 +1,5 @@
#![no_std]
pub fn add_nums(x: i32, y: i32) -> i32 {
x + y
}