restart basically lmao

This commit is contained in:
Schrottkatze 2023-12-13 18:13:43 +01:00
parent 49995bbc62
commit b4d48a598a
26 changed files with 61 additions and 1907 deletions

8
crates/rpl/Cargo.toml Normal file
View file

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

14
crates/rpl/src/lib.rs Normal file
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);
}
}