ReadLong |
Previous Next |
ReadLong <Variable> [, <Variable>, ...]
|
Part
|
Description
|
<Variable>
|
Required. Reads the data into the variable. Only long variables can
be used.
|
<Variable>
|
Optional. You can read into multiple long variables at once.
|
Reload MyData
ReadInt a&, b&, c&, d&
Print a&, b&, c&, d&
MyData:
DataLong 1, 2, 3, 4, 5
|