Create a function that takes in a word and determines whether or not it is plural. A plural word is one that ends in "s".
is_plural("changes") ➞ True
is_plural("change") ➞ False
is_plural("dudes") ➞ True
is_plural("magic") ➞ False
True (boolean) is not the same as return "True" (string).