To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
re-save EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
re-save Example
10 CLEAR SCREEN
20 PRINT "Saving code. Creating file"
30 RE-SAVE "file.txt"
40 CAT "*.txt";NAMES
50 PAUSE
60 PRINT "Now, I will purge it."
70 PURGE "file.txt"
80 CAT "*.txt";NAMES
90 PRINT "File purged."
100 END