up previous next
spaces

return a string of spaces

Syntax
spaces(N: INT): STRING

Description
This function returns a string consisting of N spaces.

Example
/**/  L := "a" + Spaces(5) + "b";
/**/  L;
a     b

See Also