Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 485 Bytes

File metadata and controls

36 lines (27 loc) · 485 Bytes

Tab

Description

Procedure Tab writes a tab character to the current output file.

PROCEDURE Tab(n : INTEGER);
def vs.Tab(n):
    return None

Parameters

Name Type Description
n INTEGER Number of tab characters to be written to file.

Examples

==== VectorScript ====

Tab(2);
{writes two tabs to the output file}

==== Python ====

Version

Availability: from All Versions

Category

  • File I@O