Link aggregation and post comments on ATProto!
at main 18 lines 308 B view raw
1// SPDX-FileCopyrightText: 2025 footnotes.social contributors 2// 3// SPDX-License-Identifier: MIT 4 5pub fn add(left: u64, right: u64) -> u64 { 6 left + right 7} 8 9#[cfg(test)] 10mod tests { 11 use super::*; 12 13 #[test] 14 fn it_works() { 15 let result = add(2, 2); 16 assert_eq!(result, 4); 17 } 18}