Hello World

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
User avatar
nigma
DevNet Resident
Posts: 1094
Joined: Sat Jan 25, 2003 1:49 am

Hello World

Post by nigma »

I just got an email from a friend and it had a link to a site that has found / created a hello world program in 204 languages.

Here's the link:
http://www2.latech.edu/~acm/HelloWorld.shtml

Interesting seeing how different some of these languages are
User avatar
m3mn0n
PHP Evangelist
Posts: 3548
Joined: Tue Aug 13, 2002 3:35 pm
Location: Calgary, Canada

Post by m3mn0n »

Visual C++ is just hilarious how long it is....
Here's a shot at a Visual C++-specific "Hello World" program. I trimmed it down as much as possible, but this is basically what App Wizard spits out for a simple dialog-based application.


lol

Not to mention the first one for PHP has a parse error in it. :wink:
d3ad1ysp0rk
Forum Donator
Posts: 1661
Joined: Mon Oct 20, 2003 8:31 pm
Location: Maine, USA

Post by d3ad1ysp0rk »

So does the second one! :o

Code: Select all

<?php
    while (i<500) {
        echo "Hello, World\n";
        i++;
    }
?>
:lol: *submits one*
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

Sadly, MFC junk just won't go away! grrr; A lot like VB.. :?
Grim...
DevNet Resident
Posts: 1445
Joined: Tue May 18, 2004 5:32 am
Location: London, UK

Post by Grim... »

Here's a page to where lots of programming languages sing the '99 bottles of beer' song.

http://www.99-bottles-of-beer.net//
Post Reply