"Hello, World!" program

From Bharatpedia, an open encyclopedia
Revision as of 21:40, 3 July 2023 by Ajay Kumar (talk | contribs) (Updated the article)

Use dmy dates|date=March 2022 Short description|Traditional beginners' computer program Redirect|Hello World|other uses|Hello World (disambiguation)

"Hello, World!" program by Brian Kernighan (1978)

A "Hello, World!" program is generally a computer program that ignores any input, and outputs or displays 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. "Hello, World!" programs are often the first a student learns to write in a given language,[1] and they can also be used as a sanity check to ensure computer software intended to compile or run source code is correctly installed, and that its operator understands how to use it.

History

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 1978 book The C Programming Language,[2] with likely earlier use in BCPL (as below). The example program in that book prints "samp|hello, world", and was inherited from a 1974 Bell Laboratories internal memorandum by Brian Kernighan, Programming in C: A Tutorial:[3]

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

In the above example, the samp|main( ) function defines where the program should start executing. The function body consists of a single statement, a call to the samp|printf function, which stands for "print formatted". This function will cause the program to output whatever is passed to it as the parameter, in this case the string samp|hello, world.

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

main( ) {
    extern a, b, c;
    putchar(a); putchar(b); putchar(c); putchar('!*n');
}
 
a 'hell';
b 'o, w';
c 'orld';

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

The Jargon File reports that "hello, world" instead originated with BCPL (1967).[5] Use of the phrase outside computing began over a decade before that; it was the catchphrase of New York radio disc jockey William B. Williams beginning in the 1950s.[6]

Variations

A "Hello, World!" program running on Sony's 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 a single statement, while in others (particularly many low-level languages) there can be many more statements required. For example, in Python, to print the string samp|Hello, World! followed by a newline, one only needs to write print("Hello, World!"). In contrast, the equivalent code in C++[7] requires the import of the input/output software library, the manual declaration of an entry point, and the explicit instruction that the output string should be sent to the standard output stream.

The phrase "Hello, World!" has seen various deviations in casing and punctuation, such as the capitalization of the leading H and W, and the presence of the comma and/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. For example, the first non-trivial Malbolge program printed "Hello world", this having been determined to be good enough.[8] Other human languages have been used as the output; for example, a tutorial for the Go programming language outputted both English and Chinese or Japanese characters, demonstrating the programming language's built-in Unicode support.[9] Another notable example is the Rust programming language, whose management system automatically inserts a "Hello, World" program when creating new projects.

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

Some languages change the functionality 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 capable of printing "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 CPLDs, "Hello, World!" may thus be substituted with a blinking LED, which demonstrates timing and interaction between components.[10][11][12][13][14]

The Debian and Ubuntu Linux distributions provide the "Hello, World!" program through their software package manager systems, which can be invoked with the command samp|hello. 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 samp|hello used, GNU Hello, serves as an example of writing a GNU program.[15]

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,[16] and the XL programming language features a spinning Earth "Hello, World!" using 3D computer graphics.[17] 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.[18]

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.[19] 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.[20][21]

Examples

Please consult the respective programming language’s Wikipedia article for an example. Following examples are a subset of programming languages with an ISO standard.

Ada

with Ada.Text_IO;
procedure Hello is
begin
   Ada.Text_IO.Put_Line ("Hello, World!");
end Hello;

ALGOL 60

sxhl|2=m2|1= BEGIN DISPLAY("Hello, World!") END.

BASIC

10 PRINT "Hello, World!"

C

#include <stdio.h>

int main(void)
{
    printf("Hello, World!\n");
}

C++

#include <iostream>

int main()
{
    std::cout << "Hello, World!" << std::endl;
}
C++23

Also allowed in C++23 (and faster):[22]

import std;
 
int main()
{
    std::println("Hello, World!");
}

C#

using System;

class Program
{ 
    static void Main()
    {
        Console.WriteLine("Hello, World!");
    }
}

or, using top-level statements (starting in C# 9):[23]

using System;

Console.WriteLine("Hello, World!");

COBOL

IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO-WORLD.
PROCEDURE DIVISION.
    DISPLAY 'Hello, World!'.
    STOP RUN.

Forth

." Hello, World!" CR

Fortran

program Hello
  print *, "Hello, World!"
end program Hello

JavaScript

For browser console/JavaScript runtime (such as Node.js):

console.log("Hello, World!");

For HTML document:

document.write("Hello, World!");

or

alert("Hello, World!");

Pascal

program hello(output);
begin
    writeln('Hello, World!');
end.

Prolog

main() :- write("Hello, World!"), nl.

Python

print("Hello, World!")

Ruby

puts "Hello, World!"

Rust

fn main() {
    println!("Hello, World!");
}

Scala

object HelloWorld {
  def main(args: Array[String]): Unit = {
    println("Hello, world!")
  }
}

See also

Portal|Computer programming

References

reflist|30em

External links

Commons category|Hello World Wikibooks|Computer Programming|Hello world

Standard test item

DEFAULTSORT:Hello World Program

  1. cite book|author=James A Langbridge|url=https://books.google.com/books?id=y51NAgAAQBAJ&pg=PA74 | title=Professional Embedded ARM Development|date = 3 December 2013|isbn = 9781118887820
  2. cite book | last = Kernighan | first = Brian W. | author-link = Brian W. Kernighan | author2 = Ritchie, Dennis M. | title = The C Programming Language | edition = 1st | publisher = Prentice Hall | date = 1978 | location = Englewood Cliffs, NJ | isbn = 0-13-110163-3 | author-link2 = Dennis M. Ritchie | url-access = registration | url = https://archive.org/details/cprogramminglang00kern
  3. cite web|url=https://www.bell-labs.com/usr/dmr/www/ctut.pdf%7Ctitle=Programming in C: A Tutorial|last=Kernighan|first=Brian|year=1974|publisher=Bell Labs|access-date=9 January 2019
  4. cite web| url = https://www.bell-labs.com/usr/dmr/www/bintro.html%7C title = The Programming Language B|publisher=Bell Labs
  5. cite web |url=http://www.catb.org/jargon/html/B/BCPL.html |title=BCPL |work=Jargon File
  6. cite web| url = https://select.nytimes.com/search/restricted/article?res=F50714FF3E5B0C778CDDA10894DE484D81%7C title = William B. Williams, Radio Personality, Dies |work=The New York Times |date=4 August 1986
  7. cite web|url=https://en.wikibooks.org/wiki/C%2B%2B_Programming/Examples/Hello_world |title=C++ Programming/Examples/Hello world |publisher=Wikibooks | accessdate=16 March 2022
  8. cite web|title=Malbolge|url=https://esolangs.org/wiki/Malbolge%7Cwebsite=Esolang%7Cpublisher=esolangs-wiki%7Caccess-date=28 October 2016
  9. A Tutorial for the Go Programming Language. webarchive |url=https://web.archive.org/web/20100726052120/http://golang.org/doc/go_tutorial.html#tmp_20 |date=26 July 2010 The Go Programming Language. Retrieved 26 July 2011.
  10. cite web|last1=Silva|first1=Mike|title=Introduction to Microcontrollers - Hello World|url=http://www.embeddedrelated.com/showarticle/460.php%7Cwebsite=EmbeddedRelated.com%7Caccess-date=19 May 2015|date=11 September 2013
  11. cite web|last1=George|first1=Ligo|title=Blinking LED using Atmega32 Microcontroller and Atmel Studio|url=https://electrosome.com/blinking-led-atmega32-avr-microcontroller/%7Cwebsite=electroSome%7Cdate=8 May 2013|access-date=19 May 2015
  12. cite web|last1=PT|first1=Ranjeeth|title=2. AVR Microcontrollers in Linux HOWTO|url=http://www.tldp.org/HOWTO/Avr-Microcontrollers-in-Linux-Howto/x207.html%7Cwebsite=The Linux Documentation Project|access-date=19 May 2015
  13. cite web|last1=Andersson|first1=Sven-Åke|title=3.2 The first Altera FPGA design|url=http://www.rte.se/blog/blogg-modesty-corex/first-altera-fpga-design/3.2%7Cpublisher=Raidió Teilifís Éireann|access-date=19 May 2015|date=2 April 2012|archive-url=https://web.archive.org/web/20150521222132/http://www.rte.se/blog/blogg-modesty-corex/first-altera-fpga-design/3.2%7Carchive-date=21 May 2015|url-status=dead
  14. cite web|last1=Fabio|first1=Adam|title=CPLD Tutorial: Learn programmable logic the easy way|url=http://hackaday.com/2014/04/06/cpld-tutorial-learn-programmable-logic-the-easy-way/%7Cwebsite=Hackaday%7Caccess-date=19 May 2015|date=6 April 2014
  15. cite web|title=Hello - GNU Project - Free Software Foundation|url=https://www.gnu.org/software/hello/%7Cwebsite=gnu.org%7Cpublisher=GNU Project|access-date=7 July 2017|archive-url=https://archive.today/20140529011826/http://www.gnu.org/software/hello/%7Carchive-date=29 May 2014|url-status=dead
  16. cite news|last=Jolif|first=Christophe|title=Bringing SVG Power to Java Applications|newspaper=Sun Developer Network|date=January 2003
  17. cite web|last=de Dinechin|first=Christophe|title=Hello world!|url=http://grenouillebouillie.wordpress.com/2010/07/24/hello-world/%7Cpublisher=Grenouille Bouillie|date=24 July 2010
  18. cite web|url=http://www.bfoit.org/itp/Soloway/CACM_Nintendo_Generation.pdf%7Ctitle=Teaching the Nintendo Generation to Program|website=bfoit.org|access-date=27 December 2015|archive-url=https://web.archive.org/web/20160505190520/http://www.bfoit.org/itp/Soloway/CACM_Nintendo_Generation.pdf%7Carchive-date=5 May 2016|url-status=dead
  19. cite book |last1=O'Dwyer |first1=Arthur |title=Mastering the C++17 STL: Make full use of the standard library components in C++17 |date=September 2017 |publisher=Packt Publishing Ltd | isbn=978-1-78728-823-2 |page=251 |url=https://books.google.com/books?id=zJlGDwAAQBAJ&q=%22TTHW%22&pg=PA251 |access-date=4 December 2019 |language=en
  20. cite web |last1=Wiegers |first1=Harold |title=The importance of "Time to First Hello, World!" an efficient API program |date=28 June 2018 |url=https://apifriends.com/api-management/api-program-time-first-hello-world/
  21. cite book |last1=Jin |first1=Brenda |last2=Sahni |first2=Saurabh |last3=Shevat |first3=Amir |title=Designing Web APIs: Building APIs That Developers Love |url=https://books.google.com/books?id=Dg1rDwAAQBAJ&q=%22time%20to%20hello%20world%22&pg=PT150 |date=29 August 2018 |publisher=O'Reilly Media |isbn=9781492026877 |access-date=19 February 2020
  22. Cite web |title=C++23: “Hello World!” with Modern C++23 « Marc Gregoire’s Blog |url=https://www.nuonsoft.com/blog/2023/01/14/hello-world-with-modern-c23/ |access-date=2023-05-04
  23. Cite web |title=Top-level statements - programs without Main methods |url=https://docs.microsoft.com/en-us/dotnet/csharp/fundamentals/program-structure/top-level-statements |access-date=2022-09-08 |website=Microsoft Docs |language=en-us