First commit

This commit is contained in:
Rodolphe Bréard 2024-02-14 18:16:45 +01:00
commit 62b749744c
5 changed files with 82 additions and 0 deletions

14
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);
}
}