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

5 lines
108 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
OPEN #1: NAME "output.txt", CREATE NEWOLD
PRINT #1: "This string is to be written to the file"
CLOSE #1
END