Write entire file: Difference between revisions

Added FreeBASIC
(Add implement in Go)
(Added FreeBASIC)
Line 109:
 
Option FORM="BINARY" ''does'' allow the reading or writing of however many records are needed to satisfy the I/O list, but, this is not a standard usage.
 
=={{header|FreeBASIC}}==
<lang freebasic>' FB 1.05.0 Win64
 
Open "output.txt" For Output As #1
Print #1, "This is a string"
Close #1</lang>
 
=={{header|Go}}==
9,490

edits