.he 'APPLIST''Page %'
.fo 'Steven Hardy'- % -'January 1978'
APPLIST	This function takes two arguments, a list and a function.  It
applies the function to every element of the list.  It could be defined
as:
 	: FUNCTION APPLIST(L,F);
 	:	IF	L/= []
 	:	THEN	F(HD(L));
 	:		APPLIST(TL(L), F);
 	:	CLOSE
 	: END;
.br
(See MAPLIST).
