.he 'ALPHABEFORE''Page %'
.fo 'Aaron Sloman'- % -'Decemeber 1977'
ALPHABEFORE
THis function takes two words as argument and returns TRUE if, and only if,
the first is alphabetically before the second, for example:
 	: ALPHABEFORE("CAT", "DOG") =>
 	** <TRUE>
 	: ALPHABEFORE("DOG", "CAT") =>
 	** <FALSE>
.br
See SORT.
