A "Hello, world" program is usually a simple computer program that displays on the screen (often the console) a message similar to "Hello, world". A small piece of code in most general-purpose programming languages, this program is used to illustrate a language's basic syntax. Such a program is often the first written by a student of a new programming language, but it can also be used as a sanity check to ensure that the computer software intended to compile or run source code is correctly installed, and that its operator understands how to use it.
History
thumb|A program to output "hello, world", handwritten in the [[C (programming language)|C language and signed by Brian Kernighan (1978)]]
While several small test programs have existed since the development of programmable computers, the tradition of using the phrase "Hello, world" as a test message was influenced by an example program in the 1978 book The C Programming Language, with likely earlier use in BCPL. The example program from the book prints , and was inherited from a 1974 Bell Laboratories internal memorandum by Brian Kernighan, Programming in C: A Tutorial:
<!--
Editor's Note: We do not need to have an example for every programming language ever created. Wikipedia is an encyclopedia. Please refrain from adding examples just because we can. If you think a particular example adds something unique and valuable to the article, petition on the talk page, first. Thanks. (User: DragonHawk)
Addendum: there are large repositories of Hello, world programs all over the net, in every conceivable language. No need exists to list them all here. In fact, there is now a very comprehensive Wikibooks link: if you want to add a version for your language, do so there (you'll likely find it already exists). HERE IS NOT THE PLACE. The C version (which is not even correct in modern C) is here because it is the first in a non-obscure language, and the B example because it is the first known. There is no reason to have many others here. ADD NO MORE!
-->
<!-- ADD NO NEWLINE, HEADER FILE, ADJUST WHITESPACE, OR INT DATA TYPE TO THIS CODE. THE ORIGINAL IN 1974 DIDN'T HAVE THEM, THANKS -->
<!-- See https://www.bell-labs.com/usr/dmr/www/ctut.pdf for original. -->
<syntaxhighlight lang="c">
main( ) {
printf("hello, world");
}
</syntaxhighlight>
In the above example, the function defines where the program should start executing. The function body consists of a single statement, a call to the function, which stands for "print formatted"; it outputs to the console whatever is passed to it as the parameter, in this case the string .
The C-language version was preceded by Kernighan's own 1972 A Tutorial Introduction to the Language B, where the first known version of the program is found in an example used to illustrate external variables:
<!-- Do not adjust the whitespace or otherwise change this example below as it is meant to match the original in the source. -->
<syntaxhighlight lang="text">
main( ) {
extrn a, b, c;
putchar(a); putchar(b); putchar(c); putchar('!*n');
}
a 'hell';
b 'o, w';
c 'orld';
</syntaxhighlight>
The program above prints ' on the terminal, including a newline character. The phrase is divided into multiple variables because in B, a character constant is limited to four ASCII characters. The previous example in the tutorial printed ' on the terminal, and the phrase ' was introduced as a slightly longer greeting that required several character constants for its expression.
The Jargon File reports that "hello, world!" instead originated in 1967 with the language BCPL. Outside computing, use of the exact phrase began over a decade prior; it was the catchphrase of New York radio disc jockey William B. Williams beginning in the 1950s.
Variations
thumb|"Hello World", displayed by a program running on Sony's [[PlayStation Portable homebrew|PlayStation Portable as a proof of concept]]
"Hello, world" programs vary in complexity between different languages. In some languages, particularly scripting languages, the "Hello, world" program can be written as one statement, while in others (more so many low-level languages) many more statements can be required. For example, in Python, to print the string ' followed by a newline, one only needs to write <syntaxhighlight lang="python" inline>print("Hello, world")</syntaxhighlight>. In contrast, the equivalent code in C++ requires the import of the C++ standard library, the declaration of an entry point (main function), and a call to print a line of text to the standard output stream.
thumb|Computer [[numerical control (CNC) machining test in poly(methyl methacrylate) (Perspex)]]
The phrase "Hello, world" has seen various deviations in casing and punctuation, such as the presence or absence of the comma or exclamation mark. Some devices limit the format to specific variations, such as all-capitalized versions on systems that support only capital letters, while some esoteric programming languages may have to print a slightly modified string. Other human languages have been used as the output; for example, a tutorial for the Go language emitted both English and Chinese or Japanese characters, demonstrating the language's built-in Unicode support. Another notable example is the Rust language, whose management system automatically inserts a "Hello, World" program when creating new projects.
thumb|A "HELLO WORLD" message being displayed through long-exposure [[light painting with a moving strip of light-emitting diodes (LEDs)]]
Some languages change the function of the "Hello, world" program while maintaining the spirit of demonstrating a simple example. Functional programming languages, such as Lisp, ML, and Haskell, tend to substitute a factorial program for "Hello, world", as functional programming emphasizes recursive techniques, whereas the original examples emphasize I/O, which violates the spirit of pure functional programming by producing side effects. Languages otherwise able to print "Hello, world" (assembly language, C, VHDL) may also be used in embedded systems, where text output is either difficult (requiring added components or communication with another computer) or nonexistent. For devices such as microcontrollers, field-programmable gate arrays, and complex programmable logic devices (CPLDs), "Hello, world" may thus be substituted with a blinking light-emitting diode (LED), which demonstrates timing and interaction between components.
The Debian and Ubuntu Linux distributions provide the "Hello, world" program through their software package manager systems, which can be invoked with the command '. It serves as a sanity check and a simple example of installing a software package. For developers, it provides an example of creating a .deb package, either traditionally or using debhelper, and the version of used, GNU Hello, serves as an example of writing a GNU program.
Variations of the "Hello, world" program that produce a graphical output (as opposed to text output) have also been shown. Sun demonstrated a "Hello, world" program in Java based on scalable vector graphics, and the XL programming language features a spinning Earth "Hello, world" using 3D computer graphics. Mark Guzdial and Elliot Soloway have suggested that the "hello, world" test message may be outdated now that graphics and sound can be manipulated as easily as text.
In computer graphics, rendering a trianglethe "Hello Triangle"is sometimes used as an introductory example for graphics libraries.
Time to Hello World
"Time to hello world" (TTHW) is the time it takes to author a "Hello, world" program in a given programming language. This is one measure of a programming language's ease of use. Since the program is meant as an introduction for people unfamiliar with the language, a more complex "Hello, world" program may indicate that the programming language is less approachable. For instance, the first publicly known "Hello, world" program in Malbolge (which actually output "HEllO WORld") took two years to be announced, and it was produced not by a human but by a code generator written in Common Lisp .
The concept has been extended beyond programming languages to APIs, as a measure of how simple it is for a new developer to get a basic example working; a shorter time indicates an easier API for developers to adopt.
Wikipedia articles containing "Hello, world" programs
See also
- "99 Bottles of Beer" as used in computer science
- Foobar
- Java Pet Store
- Just another Perl hacker
- Outline of computer science
- TPK algorithm
- Hello, World (photograph)
References
External links
- The Hello World Collection
