Write a function is_even(n) that takes an integer n and returns the Boolean True when n is even and False when n is odd. Your function must return its answer: a function that only prints its result still hands back None, and the tests check the returned value.
Examples:
is_even(4) -> True
is_even(7) -> False
is_even(0) -> True
is_even(-2) -> True