// Tests are important to ensure that your code does what you think it should
// do.
fnis_even(n:i64)->bool{
n %2==0}fnmain(){// You can optionally experiment here.
}#[cfg(test)]modtests{// TODO: Import `is_even`. You can use a wildcard to import everything in
// the outer module.
#[test]fnyou_can_assert(){// TODO: Test the function `is_even` with some values.
assert!();assert!();}}