Basic
RANDOMIZE
[number]
Reseeds the random number generator.
Number
may be an integer, or single- or double-precision number.
If you omit
number,
BASIC suspends program execution and
prompts you for
a
number before executing RANDOMIZE.
RANDOMIZE RANDOMIZE
300
RANDOMIZE TIMER
READ
variable[, variable,.
.
.]
Reads values from
a
DATA statement and assigns them to
variables.
READ
T
READ N$, D$
REM
Inserts
a
remark line in
a
program. You may use an apostrophe
(')
as an abbreviation for REM.
REM AVERAGE VELOCITY 'TOTALS
RENUM
[new
Zine][,[Zine][,increment]]
Renumbers the program currently in memory. RENUM
also
changes
all line number references appearing after GOTO, GOSUB, THEN,
ON/GOTO, ON/GOSUB, ON ERROR GOTO, RESUME, and ERL.
Line
is the line in the program
at
which BASIC
starts
renumber-
ing. Default
=
first line.
New line
is
the new line number assigned to
line.
Default
=
Line
10.
Increment
tells BASIC how to number the successive lines. Default
=
10.
RENUM RENUM
600,
5000,100
RESET
Closes all open files on all drives.
RESET
Tandy
1000
59