String-Ends-With?

(string-ends-with? string1 string2) -> boolean

Returns true if string1 ends with string2. Otherwise, returns false.

Examples:

>>(string-ends-with? "food" "d")
:: #t
>>(string-ends-with? "food" "f")
:: #f
>>(string-ends-with? "food" "od")
:: #t

Compare with: string-begins-with?