CLOSE filename
Closes the file named filename
.
All subsequent attempts to read from or write to the file will fail.
You can also close the reserved file "clipboard
with this command.
If you close the current READER or WRITER, then the reader or writer is reset to the Commander.
OPENWRITE "example.txt SETWRITE "example.txt PRINT "Hello PRINT [Good Bye] SETWRITE [] CLOSE "example.txt OPENREAD "example.txt SETREAD "example.txt REPEAT 2 [SHOW READLIST]
[Hello] [Good Bye]SETREAD [] CLOSE "example.txt