SPC
I SPC(number)
Function
I
SQR
Prints a line of number blanks.
Number
is
in
the range 0
to
255. SPC does not use string space. The
left parenthesis must immediately follow SPC.
SPC may only be used with PRINT, LPRINT, or PRINT#.
Example
PRINT
"HELLO"
SPC(
15)
"THERE"
prints HELLO,
15
spaces, THERE
ISQR(number)
Calculates the square root of
number.
The number must be greater than zero.
The result
is
always single precision.
Example
PRINT
SQR(155.7)
prints 12.478.
2·162
Function
I