>(string= "foo" "foo")
T
> (string= "foo" "FOO")
NIL
> (string/= "foo" "bar")
0
> (string/= "bar" "baz")
2
> (string/= "foo" "foo")
> (string> "foo" "Foo")
> (string< "foo" "Foo")
> (string>= "FOo" "Foo")
> (string<= "FOo" "Foo")
1