IN'PUT$
(number
[,buffer])
Inputs a string of number characters from either the
keyboard or a sequential disk file. The
number must be
a value from 1 to 255.
A$
=
INPUT$(S)
A$
=
INPUT$(11,3)
IN:PUT
[''prompt
string",']
variablel,
variable2"
..
Inputs data to a program during execution.
INPUT
Y'X,
INPUT#
buffer,
variable,
...
Iinputs
data from a sequential disk file into one or more
"...
variables.
INPUT;;l,
A,
5
INPUT#L!,
A$,
5$,
C$
IN~~~~~~j~~~~~~i~:~:fr~{o~;~~7r~~~~:eOf
string 2 in string 1
ich the match is found.
KILL
filespec
from
the disk.
KILL
"FILE/5AS"
KILL
"DATA:2"
LET
variable
= expression
Assigns the value of expression to variable.
LET
A$
"A ROSE
IS
A ROSE"
LET
51
=
1.23
LINE
INPUT[.]
[prompt
message;]
string
variable
Inputs a line from the keyboard.
LINE
INPUT
A$
LINE
INPUT#
buffer,
variable
Reads a line of data from a sequential-access file into
a string
variable. The
buffer
is the number used when
the file was OPENed.
LINE
INPUT#
1,
A$
22