space$(n)

This function will a return a string of n space characters " ", or (ASCII 32).  It is useful when producing formatted output to a file or printer.

tab(n)
Print TAB(n) 

Just BASIC has the ability to use the TAB function for formatting output to the mainwin and to the printer.  "n" is the character location where the next output will be printed.  "tab(7)" causes the next output to print beginning at column (character) 7, while "tab(21)" causes the next output to print beginning at column 21. TAB(n) works with both the mainwin PRINT command and with LPRINT.

