RosettaCodeData/Task/Write-entire-file/Run-BASIC/write-entire-file.basic

4 lines
97 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
open "output.txt" for output as #1
print #1, "This string is to be written to the file"
close #1