.he 'SORT''Page %'
.fo 'Steven Hardy'- % -'December 1977'
SORT	This function takes a list as argument and returns as result a sorted
copy, for example:
 	: SORT([12 43 14 -9]) =>
 	** [-9 12 14 43]
 	: SORT([CAT APPLE GOAT BANANA]) =>
 	** [APPLE BANANA CAT GOAT]

If the list contains numbers only, then the operation < (less than) is
used to decide where to put things in the sorted list. If it contains words
or strings, then the function ALPHABEFORE is used. If the list contains both
words and numbers an error will result.

See ALPHABEFORE.
