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

string>=?

Conformance: R5RS

Purpose: Test whether two strings are in non-ascending lexical order.

Arguments:
X - string
Y - string

Implementation:

(define (string>=? x y)
  (eq? (string<? x y) #f))

Example:

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

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