spaghetti

This commit is contained in:
LunarAkai 2025-07-29 00:13:33 +02:00
commit a97e41f395
13 changed files with 101 additions and 2 deletions

View file

@ -0,0 +1,7 @@
[package]
name = "moonhare_window"
edition = "2024"
version.workspace = true
authors.workspace = true
[dependencies]

View file

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