We Have Moved!

This blog has been retired and will receive no new content. To read new Cranial Soup articles, please visit our new location.

Sunday, January 14, 2007

Hello World

Written in C: Goodbye, cruel world! Farewell, you ugly toad!

Have you ever wondered what 'Hello World' would look like in various programming languages?

Delphi Example:

// Hello World in Delphi
Program Hello_World;
{$APPTYPE CONSOLE}
Begin
WriteLn('Hello World');
End.

Plenty more examples here:

The Hello World Collection

No comments: