Explanation
SPACE$ Function
Returns a string of spaces.Worth knowing
Useful and cross-version information about the programming environments of QBasic, QuickBasic and Visual Basic for DOS.
Useful and cross-version information about the programming environments of QBasic, QuickBasic and Visual Basic for DOS.
SPACE$(n%) |
n% | The number of spaces you want in the string. |
FOR i% = 1 TO 5
x$ = SPACE$ (i%)
PRINT x$; i%
NEXT i%