Sample test
#S:MODE=code,INCLUDE
Lets test the following function:
pub fn double(n: i64) -> i64 { n + n }
#S:MODE=test
#[test] fn test_add() { assert_eq!(doubler::double(5), 10); }
#S:MODE=code,INCLUDE
Lets test the following function:
pub fn double(n: i64) -> i64 { n + n }
#S:MODE=test
#[test] fn test_add() { assert_eq!(doubler::double(5), 10); }