NAME

space$ - return a string of spaces

SYNOPSIS

v$ = space$(NumExpr)

DESCRIPTION

Space returns a string of NumExpr spaces.  The argument may be any numeric expression. 

EXAMPLE

The program
	for i = 1 to 3
		x$ = space$(i)
		print "*"; x$; "RUN"
	next i
produces
	* RUN
	*  RUN
	*   RUN

SEE ALSO

spc, string$

from The Basmark QuickBASIC Programmer’s Manual by Lawrence Leinweber