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