HTBasic Help
×
Menu
Index

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