Create readmap tool

This commit is contained in:
Jaby Blubb 2023-06-25 14:37:16 +02:00
parent 343a4c1ab2
commit b7b5490d0c
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,8 @@
[package]
name = "readmap"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

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

View File