Login
|
Signup
langref.org
-
fantom
and
csharp
add..
all
clojure
cpp
erlang
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!")
}
}
csharp
System.Console.WriteLine("Hello World!")
class SolutionXX
{
static void Main()
{
System.Console.WriteLine("Hello World!")
}
}
Submit a new solution for
fantom
or
csharp
There are 23 other solutions in
additional
languages (
clojure
,
cpp
,
erlang
,
fsharp
...)