To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
save EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
save Example
10 CLEAR SCREEN
20 PRINT "Saving code. Creating file"
30 SAVE "file.txt"
40 PRINT "Program paused."
50 PAUSE
60 PURGE "file.txt"
70 PRINT "File purged."
80 END