vote up 3 vote down star
7

Help make Stack Overflow become the definitive place to come to for examples of the classic "Hello World!" program. Feel free to use any language you like and keep to one example per answer please.

flag
show 4 more comments

47 Answers

prev 1 2
vote up 0 vote down

F#

printf "Hello World!\n"

or

open System
Console.WriteLine "Hello World"

T-SQL

print 'Hello World'
link|flag
vote up 1 vote down

In Delphi:

Console

program HelloWorld;

{$APPTYPE CONSOLE}

begin
  Writeln('Hello, World!');
end.

GUI

program HelloWorld;

{$APPTYPE CONSOLE}

uses
  Dialogs;

begin
  ShowMessage('Hello, World!');
end.
link|flag
vote up 0 vote down

JAVASCRIPT

alert("hello world")
link|flag
vote up 1 vote down

From here:

% zmail jim

I need a "Hello, world." program by this afternoon.

link|flag
vote up 0 vote down

XSLT

<xsl:text>Hello World!</xsl:text>

or

<xsl:value-of select="'Hello World!'"/>
link|flag
vote up 1 vote down

APL:

⎕←'Hello, World!'
link|flag
vote up 2 vote down

A few months ago, a contractor at work introduced me to Unlambda.. Ever since I've been thoroughly intrigued:

```s``sii`ki
 ``s``s`ks
     ``s``s`ks``s`k`s`kr
               ``s`k`si``s`k`s`k
                               `d````````````.H.e.l.l.o.,. .w.o.r.l.d.!
                        k
      k
  `k``s``s`ksk`k.*
link|flag
vote up 1 vote down

Rich Text Format (.rtf):

{\rtf1\ansi\ansicpg1252\deff0\deflang1030{\fonttbl{\f0\fswiss\fcharset0 Arial;}} \viewkind4\uc1\pard\f0\fs20 Hello world!\par }

link|flag
vote up 1 vote down

My favorite language in the world, Haskell:

main :: IO ()
main = putStrLn "Hello World!"
link|flag
vote up 2 vote down

Not my fav language, but still a way of writing it ...

Piet

Piet Hello World!

link|flag
show 1 more comment
vote up 2 vote down

This is a strange way to program... The Chef Language Hello World:

Hello World Souffle.

This recipe prints the immortal words "Hello world!", in a basically brute force
way. It also makes a lot of food for one person.

Ingredients.
72 g haricot beans
101 eggs
108 g lard
111 cups oil
32 zucchinis
119 ml water
114 g red salmon
100 g dijon mustard
33 potatoes

Method.
Put potatoes into the mixing bowl. Put dijon mustard into the mixing bowl. 
Put lard into the mixing bowl. Put red salmon into the mixing bowl. 
Put oil into the mixing bowl. Put water into the mixing bowl. 
Put zucchinis into the mixing bowl. Put oil into the mixing bowl. 
Put lard into the mixing bowl. Put lard into the mixing bowl.
Put eggs into the mixing bowl. Put haricot beans into the mixing bowl. 
Liquefy contents of the mixing bowl. Pour contents of the mixing bowl 
into the baking dish.

Serves 1.

*Every line is part of the source, believe me

link|flag
show 2 more comments
vote up 2 vote down

Back to MSDOS Assembly (from here)

; This program displays "Hello, World!"

dosseg
.model small
.stack 100h

.data
hello_message db 'Hello, World!',0dh,0ah,'$'

.code
main  proc
      mov    ax,@data
      mov    ds,ax

      mov    ah,9
      mov    dx,offset hello_message
      int    21h

      mov    ax,4C00h
      int    21h
main  endp
end   main

Good ol' tasm & tlink ...

link|flag
vote up 1 vote down

In Icon


procedure main()
    every writes(!"hello world")
    write()
end
link|flag
vote up 0 vote down

perl 5.10 & 6:

say "Hello World";

link|flag
vote up 0 vote down

My program prints it multiple times:

$ yes Hello World
link|flag
vote up 0 vote down

Lua:

print "Hello World!"
link|flag
vote up 0 vote down

In Haskell (fully compilable too!)

module Hello where
hello = do
   print "Hello World"
link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.