ReadLong
Previous  Next

Description: Reads data from DataLong statements.

     Syntax:
     
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.

Example:

        Reload MyData
        ReadInt a&, b&, c&, d&
        Print a&, b&, c&, d&

MyData:
        DataLong 1, 2, 3, 4, 5