"Hello, World!" program

A "Hello, World!" message being displayed through long-exposure light painting with a moving strip of LED lights

A "Hello, World!" program is a computer program that outputs or displays the message "Hello, World!". Being a very simple program in most programming languages, it is often used to illustrate the basic syntax of a programming language and is often the first program people write.[1][2]

Purpose

A "Hello, World!" program is traditionally used to introduce novice programmers to a programming language.

"Hello, world!" is also traditionally used in a sanity test to make sure that a computer language is correctly installed, and that the operator understands how to use it.

History

"Hello, world" program by Brian Kernighan (1978)

While 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 seminal book The C Programming Language.[3] The example program from that book prints "hello, world" (without capital letters or exclamation mark), and was inherited from a 1974 Bell Laboratories internal memorandum by Brian Kernighan, Programming in C: A Tutorial:[4]

#include <stdio.h>

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

The C version was preceded by Kernighan's own 1972 A Tutorial Introduction to the Language B,[5] where the first known version of the program is found in an example used to illustrate external variables:

main(){
  extrn a,b,c;
  putchar(a); putchar(b); putchar(c); putchar('!*n');
  }

a 'hell';
b 'o, w';
c 'orld';

The program prints hello, world! 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 hi! on the terminal, and the phrase hello, world! was introduced as a slightly longer greeting that required several character constants for its expression.

It is also claimed that hello, world originated instead with BCPL (1967).[6]This claim is supported by the archived notes of the inventors of BCPL, Prof. Brian Kernighan at Princeton and Martin Richards at Cambridge.

For modern languages, hello, world programs vary in sophistication. For example, the Go programming language introduced a multilingual program,[7] Sun demonstrated a Java hello, world based on scalable vector graphics,[8] and the XL programming language features a spinning Earth hello, world using 3D graphics.[9] While some languages such as Perl, Python or Ruby may need only a single statement to print "hello, world", a low-level assembly language may require dozens of commands. 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.[10]

Variations

A "Hello, world!" program running on Sony's PlayStation Portable as a proof of concept.

There are many variations on the punctuation and casing of the phrase. Variations include the presence or absence of the comma and exclamation mark, and the capitalization of the 'H', both the 'H' and the 'W', or neither. Some languages are forced to implement different forms, such as "HELLO WORLD", on systems that support only capital letters, while many "hello, world" programs in esoteric languages print out a slightly modified string. For example, the first non-trivial Malbolge program printed "HEllO WORld", this having been determined to be good enough.[11]

There are variations in spirit, as well. Functional programming languages, like 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 capable of Hello, World (Assembly, C, VHDL) may also be used in embedded systems, where text output is either difficult (requiring additional components or communication with another computer) or nonexistent. For devices such as microcontrollers, field-programmable gate arrays, and CPLD's, "Hello, World" may thus be substituted with a blinking LED, which demonstrates timing and interaction between components.[12][13][14][15][16]

The Debian and Ubuntu Linux distributions provide the "hello, world" program through the apt packaging system; this allows users to simply type "apt-get install hello" for the program to be installed, along with any software dependencies. While of itself useless, it serves as a sanity check and a simple example to newcomers of how to install a package. It is significantly more useful for developers, however, as it provides an example of how to create a .deb package, either traditionally or using debhelper, and the version of hello used, GNU Hello, serves as an example of how to write a GNU program.[17]

Time to Hello World

Time to "Hello World" (TTHW) is a metric for how long it takes to get a "Hello World" program running from scratch.[18]

See also

References

  1. James A Langbridge. "Professional Embedded ARM Development".
  2. "sinobitorg/hardware". GitHub.
  3. Kernighan, Brian W.; Ritchie, Dennis M. (1978). The C Programming Language (1st ed.). Englewood Cliffs, NJ: Prentice Hall. ISBN 0-13-110163-3.
  4. Kernighan, Brian. "Programming in C: A Tutorial". Retrieved 28 November 2016.
  5. "The Programming Language B".
  6. BCPL, Jargon File
  7. A Tutorial for the Go Programming Language. Archived July 26, 2010, at the Wayback Machine. The Go Programming Language. Retrieved July 26, 2011.
  8. Jolif, Christophe (January 2003). "Bringing SVG Power to Java Applications". Sun Developer Network.
  9. de Dinechin, Christophe (July 24, 2010). "Hello world!". Grenouille Bouillie.
  10. "Teaching the Nintendo Generation to Program" (PDF). bfoit.org.
  11. "Malbolge". Esolang. esolangs-wiki. Retrieved 28 October 2016.
  12. Silva, Mike (11 September 2013). "Introduction to Microcontrollers - Hello World". EmbeddedRelated.com. Retrieved 19 May 2015.
  13. George, Ligo. "Blinking LED using Atmega32 Microcontroller and Atmel Studio". electroSome. Retrieved 19 May 2015.
  14. PT, Ranjeeth. "2. AVR Microcontrollers in Linux HOWTO". The Linux Documentation Project. Retrieved 19 May 2015.
  15. Andersson, Sven-Åke (2 April 2012). "3.2 The first Altera FPGA design". RTE. Realtime Embedded AB. Retrieved 19 May 2015.
  16. Fabio, Adam (6 April 2014). "CPLD Tutorial: Learn programmable logic the easy way". Hackaday. Retrieved 19 May 2015.
  17. "Hello - GNU Project - Free Software Foundation". gnu.org. GNU Project. Archived from the original on 29 May 2014. Retrieved 7 July 2017.
  18. "Six Ways to Accelerate Time to First "Hello World"". ProgrammableWeb. Retrieved 7 September 2018.
  • Rösler, Wolfram. "Hello World Collection". helloworldcollection.de.
  • "Hello world/Text". Rosetta Code.
  • "Unsung Heroes of IT / Part One: Brian Kernighan". TheUnsungHeroesOfIT.com.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.