t3x.org / sketchy / library / sgtp.html
SketchyLISP
Reference
  Copyright (C) 2006
Nils M Holm

string>?

Conformance: R5RS

Purpose: Test whether two strings are in descending lexical order.

Arguments:
X - string
Y - string

Implementation:

(define (string>? x y)
  (string<? y x))

Example:

(string>? "xyz" "abc") 
=> #t

See also:
string-ci>?, string<?, string=?, string<=?, string>=?, char>?, equal?.