Write a function that returns a proc, which transforms its input by adding a particular suffix at the end.
add_ly = add_suffix("ly")
add_ly.call("hopeless") ➞ "hopelessly"
add_ly.call("total") ➞ "totally")
add_less = add_suffix("less")
add_less.call("fear") ➞ "fearless")
add_less.call("ruth") ➞ "ruthless")N/A