View Problem

Write a string to a file

ExpandDiskEdit
fantom
File(`out.txt`).out.writeChars("some text").flush
ExpandDiskEdit
cpp C++/CLI .NET 2.0
IO::StreamWriter^ stream;

try
{
stream = gcnew IO::StreamWriter("test.txt", false);
stream->WriteLine("This line overwites file contents!");
}

Submit a new solution for fantom or cpp
There are 17 other solutions in additional languages (clojure, csharp, erlang, fsharp ...)