HELP NL Fran Evelyn, July 85
nl(<integer>);
This procedure is used to print a specified number of newlines. For example
nl(5);
prints five new lines. NL is defined as:
define nl(n);
repeat n times
pr(newline);
endrepeat
enddefine;
See also
HELP *NEWLINE - variable which holds the newline character
HELP *SP - prints a specified number of spaces
HELP *PRINT - for other print proceduresAuthor: Fran Evelyn, July 85