Changes

Jump to: navigation, search

Locomotive BASIC

423 bytes added, 21:20, 19 December 2006
/* RESTORE */
</pre>
==== RESTORE [line] ====: [Resets the data pointer used by <tt>READ</tt>.When used without parameters, resets the pointer to the first data in the program.Otherwise, resets the pointer to the given line number.] ''Example:''<pre>10 DATA 10,11,12,13,1420 DATA 20READ i:PRINT i 10ReadyREAD i:PRINT i 11ReadyRESTOREReadyREAD i:PRINT i 10ReadyRESTORE 20ReadyREAD i:PRINT i 20Ready</pre>  ''See also:'' <tt>DATA</tt>, <tt>READ</tt>
==== RESUME ====