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

4 lines
108 B
Text

OPEN #1: NAME "output.txt", CREATE NEWOLD
PRINT #1: "This string is to be written to the file"
CLOSE #1
END