Write a function that receives a string. It should return True
if the string ends in 'ly' (lowercase only).
Examples:
endsInLy("suddenly")
returns True
endsInLy("SUDDENLY")
returns False
endsInLy("suddenly I saw the rescue train")
returns False
endsInLy("well")
returns False
©2017 Graham Mitchell