RosettaCodeData/Task/Write-entire-file/BASIC256/write-entire-file.basic

5 lines
94 B
Plaintext

f = freefile
open f, "output.txt"
write f, "This string is to be written to the file"
close f