1
Fork 0

core: Blank out the file

This commit is contained in:
Steffo 2024-11-11 08:43:35 +01:00
parent a7d095fee0
commit 77e76d9dfb
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

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