Write entire file: Difference between revisions

Content added Content deleted
No edit summary
Line 133: Line 133:
Print #1, "This is a string"
Print #1, "This is a string"
Close #1</lang>
Close #1</lang>

=={{header|Gambas}}==
<lang gambas>Public Sub Main()

File.Save(User.home &/ "test.txt", "(Over)write a file so that it contains a string.")

End</lang>


=={{header|Go}}==
=={{header|Go}}==