Login
|
Signup
langref.org
-
fantom
and
erlang
add..
all
clojure
cpp
csharp
fsharp
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").
Submit a new solution for
fantom
or
erlang
There are 23 other solutions in
additional
languages (
clojure
,
cpp
,
csharp
,
fsharp
...)