IF s1 == s2
? "The strings are equal"
ENDIF
IF !( s1 == s2 )
? "The strings are not equal"
IF s1 > s2
? "s2 is lexically ordered before than s1"
IF s1 < s2
? "s2 is lexically ordered after than s1"