Login
|
Signup
langref.org
-
fantom
,
erlang
, and
fsharp
add..
all
clojure
cpp
csharp
go
groovy
haskell
java
ocaml
perl
php
python
ruby
scala
Home
All
Solved
Unsolved
Strings
Numbers
Regex
Lists
Maps
Structure
Files
Dates
OOP
Networking
XML
Algorithms
Misc
Parallel
View Problem
Strings
Printing
Output a string to the console
Write the string
"Hello World!"
to STDOUT
fantom
echo("Hello World!")
class SolutionXX
{
Void main()
{
echo("Hello World!")
}
}
erlang
io:format("Hello, World!~n").
-module(hello).
-export([start/0]).
start() ->
io:format("Hello, World!~n").
fsharp
printfn "Hello World!"
#light
printfn "Hello World!"
Submit a new solution for
fantom
,
erlang
, or
fsharp
There are 22 other solutions in
additional
languages (
clojure
,
cpp
,
csharp
,
go
...)