.he 'UNPACKWORD''Page %'
.fo 'Steven Hardy'- % -'October 1977'
UNPACKWORD	This function takes a word as argument and returns a list of
one character words and numbers, thus:
 	: UNPACKWORD("CAT") =>
 	** [C A T]
 	: UNPACKWORD("GOAT34") =>
 	** [G O A T 3 4]
.br
See PACKWORD.
