Create a function that returns true if an integer is evenly divisible by 5, and false otherwise.
true
false
divisible_by_five(5) ➞ true divisible_by_five(-55) ➞ true divisible_by_five(37) ➞ false
return