.he 'NL''Page %'
.fo 'Steven Hardy''January 78'
NL	This function is used to print several NEWLINEs.  For example NL(5) prints five
new lines.  NL is defined as:
 	: FUNCTION NL(N);
 	:	REPEAT N TIMES
 	:		PR(NEWLINE)
 	:	CLOSE
 	: END;
.br
