feat: prepare for project addition

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-08-11 17:00:19 +02:00
parent 2e5c7afb22
commit 24a92f0955
2 changed files with 8 additions and 15 deletions

View File

@@ -1,14 +1 @@
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);
}
}