This commit is contained in:
2025-06-28 11:37:46 +02:00
parent 2414541006
commit afdce653b9
3 changed files with 27 additions and 0 deletions

7
.gitignore vendored
View File

@@ -1,3 +1,4 @@
# ---> Rust # ---> Rust
# Generated by Cargo # Generated by Cargo
# will have compiled files and executables # will have compiled files and executables
@@ -20,3 +21,9 @@ Cargo.lock
# and can be added to the global gitignore or merged into this file. For a more nuclear # and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ #.idea/
=======
/target
.env
.env.*
!.env.example

6
Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "merlin-reflect"
version = "0.1.0"
edition = "2024"
[dependencies]

14
src/lib.rs Normal file
View File

@@ -0,0 +1,14 @@
pub fn add(left: u64, right: u64) -> u64 {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}