4 lines
94 B
Text
4 lines
94 B
Text
f = freefile
|
|
open f, "output.txt"
|
|
write f, "This string is to be written to the file"
|
|
close f
|