HTBasic Help
×
Menu
Index

CONFIGURE CREATE Example

10    CONFIGURE CREATE "HTB"  !This sets the file being created to an HTB header.
20    CREATE "test1.txt",0
30    CONFIGURE CREATE "HP"   !This sets the file being created to an HP header.
40    CREATE "test2.txt",0
50    PURGE "test1.txt"
60    PURGE "test2.txt"
70    END