Community QBasic

Rebooting the QBasic we all know and love!


Project maintained by Cory Smith

TAB

Moves the print position to the specified column.

Syntax

TAB(column)

Comments

column is the desired tab column. If the current position is beyond the specified column, TAB moves to the column on the next line.

Example

FOR i = 1 TO 10
  PRINT TAB(i); i
NEXT i

See Also