Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 456 Bytes

File metadata and controls

36 lines (27 loc) · 456 Bytes

Space

Description

Procedure Space writes a space to the current output file.

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

Parameters

Name Type Description
n INTEGER Number of spaces.

Examples

==== VectorScript ====

Space(5);
{write 5 spaces to the output file}

==== Python ====

Version

Availability: from All Versions

Category

  • File I@O