basic/doc/statements/
restore.rs

1/*!
2# `RESTORE [<line number>]`
3
4## Purpose
5Changes the `DATA` pointer to a different location.
6
7## Remarks
8Not specifying a line number restores the pointer to the first element
9of the first `DATA` statement. You can also move the pointer to the
10first element of any line.
11
12## Example
13```text
1410 FOR I=1 TO 5
1520 READ A$: PRINT A$;:RESTORE 110
1630 NEXT
17100 DATA "HELLO"
18110 DATA "."
19RUN
20HELLO....
21```
22
23*/