To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic User Guide
Files
RESET
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
RESET
When RESET is used with a file, the file position is set to the beginning of the file.
10 ASSIGN @I TO "TEMP.TXT";FORMAT ON
20 OUTPUT @I;"HELLO"
30 RESET @I
40 ENTER @I;A$
50 PRINT A$
60 END