Rebooting the QBasic we all know and love!
Moves the print position to the specified column.
TAB(column)
TAB
column is the desired tab column. If the current position is beyond the specified column, TAB moves to the column on the next line.
FOR i = 1 TO 10 PRINT TAB(i); i NEXT i