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");
DiskEdit
clojure
(println "Hello World!")
DiskEdit
groovy
println "Hello World!"

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