1/* 2 Appellation: node <module> 3 Creator: FL03 <jo3mccain@icloud.com> 4 Description: 5 ... Summary ... 6*/ 7 8#[cfg(test)] 9mod tests { 10 #[test] 11 fn test() { 12 let f = |x: usize, y: usize| x + y; 13 assert_eq!(f(4, 2), 6) 14 } 15}