Starting to think of a stream architecture

This commit is contained in:
2025-10-21 22:36:22 +02:00
parent 3cebc8f3d9
commit 59ded0585b
3 changed files with 86 additions and 14 deletions

View File

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