HTBasic Help
×
Menu
Index

RESTORE

Specifies which DATA statement to use for the next READ operation.
 
 RESTORE [{line-number | line-label}]
 
Usage:
RESTORE
RESTORE 950
RESTORE Star
Example: RESTORE.BAS
Description:
The next READ statement gets its data from the current data pointer. RESTORE sets the data pointer to the specified program line. If that line is not a DATA statement the next higher numbered DATA statement will be used for the next READ statement. If no line is specified, the data pointer is set to the first DATA statement in the current context.
See Also: