View Problem

Output a string to the console

Write the string "Hello World!" to STDOUT
ExpandDiskEdit
fantom
echo("Hello World!")
ExpandDiskEdit
cpp
std::cout << "Hello World" << std::endl;
ExpandDiskEdit
cpp
std::printf("Hello World\n");
ExpandDiskEdit
cpp C++/CLI .NET 2.0
Console::WriteLine(L"Hello World");

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