View Problem

Output a string to the console

Write the string "Hello World!" to STDOUT
ExpandDiskEdit
csharp
System.Console.WriteLine("Hello World!")
ExpandDiskEdit
erlang
io:format("Hello, World!~n").
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");
ExpandDiskEdit
fsharp
printfn "Hello World!"

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