HTBasic Help
×
Menu
Index

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