RESTORE_LABEL

RESTORE_LABEL L

FORCES TO READ VALUES FROM THE LABEL L

  • Type: Command
  • Parameter: 1
  • Group: Reference

ACTION

The command RESTORE_LABEL forces to read values from the label L.

SYNTAX: RESTORE_LABEL

  • L = label.

USE

  • The command RESTORE_LABEL is used to read values in DATA statements, from a label.

ERROR

  • If the label L does not exist.
  • If L is not a correct label name.

EXAMPLE

label restorelb

dim a

data 1,2

restorelb:

data 3,4

read a:print a

read a:print a

read a:print a

read a:print a

print

restore_label restorelb

read a:print a

read a:print a

SEE ALSO

DATA

READ

RESTORE_LABEL