Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 514 Bytes

File metadata and controls

35 lines (27 loc) · 514 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