AKD BASIC User Guide | 5 AKD BASIC Functions
5.25 SPACE$()
General Information
Type Function
Description Returns a string of n spaces.
Syntax
result$ = SPACE$(n)
n is 0 to 255
Instructions
N is rounded to an integer before SPACE$() is evaluated.
Example
x$ = "(" + SPACE$(1) + "hello" + SPACE$(4) +
")"
Print x$ 'prints: ( hello )
Related Topics
STRING$()
Kollmorgenâ„¢ | March 30, 2012 88