This collection includes 410 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 4 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

Ubercode

Ubercode 1 class Hello
public function main()
code
	call Msgbox("Hello", "Hello, world!")
end function
end class

UniComal

// Hello World in UniComal

PRINT "Hello World"

Uniface

message "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 (926) 746 2081(globe telecom) for your opinions and questions or visit our offical blog to want to know last annoucement and updates on site.

Last Modify Date : 3/12/2010 11:56:55 AM (...don't count your chickens before they hatch)