HELP ALPHABEFORE                               Aaron Sloman, December 1977

    alphabefore(string, word) -> boolean (or 1)

This procedure takes two words or strings as arguments and returns TRUE if
the first is alphabetically before the second, 1 if they are
alphabetically equivalent, and false otherwise. For example:

    alphabefore("cat", "dog") =>
    ** <true>
    alphabefore("dog", "cat") =>
    ** <false>
    alphabefore("cat", "cat") =>
    ** 1
    alphabefore('cat', "cat") =>
    ** 1
    alphabefore('cat', 'catch')=>
    ** <true>

See also HELP * SORT.
