@LabelName added to the beginning of the DATA statement to be read
・When you put RESTORE "1:@LabelName" or/and the "Number:" before the label names, then it can refer to other program slots.
・When specifying a program slot, it is necessary to enable the program in the target program slot beforehand with the EXEC command.
・If a string is specified instead of a label, the value of the expression is considered as a label at runtime and the label is referenced.
・In addition to labels, each of the following strings has a special function.
"PUSH" | Stops the READ reading position on the stack. The current READ reading position remains unchanged. |
"POP" | Set the READ reading position to the location where the reading occurred from the stack. |
"BEGIN" | Set the READ reading position to the beginning of a DATA statement in the program. |
"Number:BEGIN" | Set the READ reading position to the beginning of a DATA statement in the specified program slot. |
RESTORE @DATATOP READ X,Y,Z,T$ @DATATOP DATA 123,345,56,"SAMPLE"