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