This collection includes 360 Hello World programs in many more-or-less well known programming language.

'Hello World' is the first program one usually writes when learning a new programming language. The first Hello World program appeared in chapter 1.1 of the first edition of Kernighan & Ritchie's original book about C, 'The C Programming Language', in 1978 and read like this:
            main() {
                printf("hello, world\n");
            }
            
1 A B C D E F G H I J K L M N O P Q R S T U V W X Z

UniComal

// Hello World in UniComal

PRINT "Hello World"

Unix-Shell

# Hello World for the Unix shells (sh, ksh, csh, bash, ...)

echo 'Hello World!'

unlambda

# Hello World in unlambda

`r```````````.H.e.l.l.o. .w.o.r.l.di

UnrealScript

// Hello World for UnrealScript

class HelloWorldHUD extends HudBase;

simulated function DrawHudPassC (Canvas C)
{
  C.SetPos( 0.50*C.ClipX , 0.50*C.ClipY);
  C.DrawText("Hello World!");
}

defaultproperties
{
}

 

2004 - 2023 www.googletoad.com

You can send an email to info@googletoad.com or call or text to webmaster through by 0063 (927) 836 8309(globe telecom) for your opinions ve questions or visit our offical blog to want to know last annoucement and updates on site.

Last Modify Date : 7/6/2008 5:03:25 AM (...don't count your chickens before they hatch)