Hello, world

From Computer History Wiki
Revision as of 14:24, 8 October 2018 by Jnc (talk | contribs) (Stubbty, but it covers the topic)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Hello World is the canonical 'shortest example program' in any given programming language; a program which simply prints 'hello, world', and then terminates.

It started with one in the 'C Tutorial' in UNIX V6:

main() {
	printf("hello, world");
}