mirror of
https://github.com/logos-storage/tor-experiments.git
synced 2026-01-07 00:03:08 +00:00
15 lines
210 B
Rust
15 lines
210 B
Rust
|
|
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);
|
||
|
|
}
|
||
|
|
}
|