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