RESTORE

RESTORE label

Specifies the position of the next data to be read.

See DATA for more information.

Example 1:

RESTORE MyDataBlock

FOR I = 1 TO 3
    READ v
    PRINT v
NEXT
END

DATA 1,2,3
LABEL MyDataBlock
DATA 4,5,6

' Output: 4 5 6
Data
If there is insufficient information on this page and you wish learn more about RESTORE, please send an email to smallbasic@gmail.com. You can help to improve information about RESTORE by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.