up previous next

Spaces

Syntax

Spaces(N:INT):STRING
    

Summary

return a string of spaces

Description

This function returns a string consisting of N spaces.

example

    
L := "a" + Spaces(5) + "b";
L;
a     b
-------------------------------
        
    

See Also