feat: maybe finished the loader for now

I need a beacon before I can appropriately test the loader
This commit is contained in:
Andrew Rioux
2025-01-21 23:23:07 -05:00
parent cd56d57cb3
commit 53019f6fc9
8 changed files with 130 additions and 22 deletions

View File

@@ -0,0 +1,6 @@
[package]
name = "sparse-infector"
edition = "2024"
version.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);
}
}