(string=? string1 string2) -> boolean
Returns true if string1 and string2 are the same length and contain the same characters in the same order. This is case-sensitive. In all other cases, returns false.
Examples:
>>(string=? "Scott" "scott") :: #f >>(string=? "Scott" "Scott") :: #t >> (string=? "Scott" "Scott ") :: #f