5 lines
109 B
Text
5 lines
109 B
Text
|
|
f = FREEFILE
|
||
|
|
OPEN "output.txt" FOR OUTPUT AS #f
|
||
|
|
PRINT #f, "This string is to be written to the file"
|
||
|
|
CLOSE #
|