statement/RESTORE                                           statement/RESTORE
 
 NAME
     RESTORE -- Sets a DATA pointer
 
 ABBREVIATION
     re <shift> S

 SYNOPSIS
     RESTORE [<line>]

 FUNCTION
     When executed in a program, the pointer to the item in a DATA statement 
     which is to be read next is reset to the first item in the list. This 
     gives you the ability to re-READ the information. If a line number 
     (<line>) follows the RESTORE statement, the pointer is set to that line.
     Otherwise the pointer is reset to the first DATA statement in the 
     program.
 
 INPUTS
     <line> - a BASIC line number where DATA pointer should be set
 
 RESULT
     Sets DATA pointer to the first item in a DATA item list or to the given 
     BASIC line number which contains a DATA statement.

 EXAMPLES
     10 RESTORE 200
 
 NOTES
     None
 
 BUGS
     None
 
 SEE ALSO
     DATA
     READ