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

6 lines
92 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
' FB 1.05.0 Win64
Open "output.txt" For Output As #1
Print #1, "This is a string"
Close #1