RosettaCodeData/Task/Write-entire-file/BASIC256/write-entire-file.basic
2023-07-01 13:44:08 -04:00

4 lines
94 B
Text

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