%
%	\f(HDString Comparisons\fP
%
%	Just as numbers have an order, we can order strings.
%	The order is \f(HDlexicographic\fP, i.e., dictionary order.
%

if s < "n" then ...

%
%	The following conditions are \f(HDtrue\fP
%


	"a" < "b"           ...        "y" < "z"

	Is: "e" < "o" ????


	"ab" < "ac"
	"ab" < "aba"


	"2" < "4"

	Is: "2" < 4   ????


	" " < "a"

	"a " < "aa"
