Rebooting the QBasic we all know and love!
Returns a string containing the specified number of spaces.
SPACE$(num_spaces)
SPACE$
num_spaces is an integer expression (from 0 through 32,767).
FOR i = 0 TO 5 PRINT SPACE$(i); i NEXT i
0 1 2 3 4 5