"Hello, World!" program: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
→‎Variations: restore old image. It's a change from #<my_favourite_language.h>
(36 intermediate revisions by 23 users not shown)
Line 1: Line 1:
{{Short description|Traditional first example of a computer programming language}}
{{Redirect|Hello, World|other uses|Hello World (disambiguation)}}
{{pp-vandalism|small=yes}}
{{pp-vandalism|small=yes}}
{{Use dmy dates|date=March 2022}}
{{Use dmy dates|date=March 2022}}
A '''"Hello, World!" program''' is generally a simple [[computer program]] which outputs (or displays) to the screen (often the [[Console application|console]]) a message similar to "Hello, World!" while ignoring any user input. A small piece of code in most [[general-purpose programming language]]s, this program is used to illustrate a language's basic [[Syntax (programming languages)|syntax]]. A "Hello, World!" program is often the first written by a student of a new programming language,<ref>{{cite book|author=James A Langbridge|url=https://books.google.com/books?id=y51NAgAAQBAJ&pg=PA74
{{Short description|Traditional beginners' computer program}}
| title=Professional Embedded ARM Development|date = 3 December 2013|isbn = 9781118887820}}</ref> but such a program can also be used as a [[sanity check]] to ensure that the [[computer software]] intended to [[Compile (computing)|compile]] or run [[source code]] is correctly installed, and that its operator understands how to use it.
{{Redirect|Hello World|other uses|Hello World (disambiguation)}}
[[File: Hello World Brian Kernighan 1974.jpg|thumb|"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 language]]s, this program is used to illustrate a language's basic [[Syntax (programming languages)|syntax]]. "Hello, World!" programs are often the first a student learns to write in a given language,<ref>{{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}}</ref> 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==
==History==
[[File:Hello World Brian Kernighan 1974.jpg|thumb|"Hello, World!" program handwritten in the [[C language]] and signed by [[Brian Kernighan]] (1978)]]


While small test programs have existed since the development of programmable [[computer]]s, 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]]'',<ref>{{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 }}</ref> 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 Labs|Bell Laboratories]] internal memorandum by [[Brian Kernighan]], ''Programming in C: A Tutorial'':<ref name="ctut">{{cite web|url=https://www.bell-labs.com/usr/dmr/www/ctut.pdf|title=Programming in C: A Tutorial|last=Kernighan|first=Brian|year=1974|publisher=Bell Labs|access-date=9 January 2019}}</ref>
While small test programs have existed since the development of programmable [[computer]]s, 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]]'',<ref>{{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 }}</ref> with likely earlier use in [[BCPL]]. The example program from the book prints {{samp|"hello, world"}}, and was inherited from a 1974 [[Bell Labs|Bell Laboratories]] internal memorandum by [[Brian Kernighan]], ''Programming in C: A Tutorial'':<ref name="ctut">{{cite web|url=https://www.bell-labs.com/usr/dmr/www/ctut.pdf|title=Programming in C: A Tutorial|last=Kernighan|first=Brian|year=1974|publisher=Bell Labs|access-date=9 January 2019}}</ref>
<!--
<!--
**************************************
**************************************
Line 26: Line 25:
</syntaxhighlight>
</syntaxhighlight>


In the above example, the {{samp|main( )}} [[subroutine|function]] defines where the program [[Entry point|should start executing]]. The function body consists of a single [[Statement (computer science)|statement]], a call to the {{samp|printf}} function, which stands for "''print f''ormatted". This function will cause the program to output whatever is passed to it as the [[Parameter (computer programming)|parameter]], in this case the [[String (computer science)|string]] {{samp|hello, world}}.
In the above example, the {{samp|main( )}} [[subroutine|function]] defines where the program [[Entry point|should start executing]]. The function body consists of a single [[Statement (computer science)|statement]], a call to the {{samp|printf()}} function, which stands for "''print f''ormatted"; it outputs to the [[Console application|console]] whatever is passed to it as the [[Parameter (computer programming)|parameter]], in this case the [[String (computer science)|string]] {{samp|"hello, world"}}.


The C language version was preceded by Kernighan's own 1972 ''A Tutorial Introduction to the Language [[B (programming language)|B]]'',<ref name="langb">{{cite web| url = https://www.bell-labs.com/usr/dmr/www/bintro.html| title = The Programming Language B|publisher=Bell Labs}}</ref> where the first known version of the program is found in an example used to illustrate external variables:
The C-language version was preceded by Kernighan's own 1972 ''A Tutorial Introduction to the Language [[B (programming language)|B]]'',<ref name="langb">{{cite web| url = https://www.bell-labs.com/usr/dmr/www/bintro.html| title = The Programming Language B|publisher=Bell Labs}}</ref> where the first known version of the program is found in an example used to illustrate external variables:


<syntaxhighlight lang="c">
<syntaxhighlight lang="c">
Line 41: Line 40:
</syntaxhighlight>
</syntaxhighlight>


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 program above 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).<ref>{{cite web |url=http://www.catb.org/jargon/html/B/BCPL.html |title=BCPL |work=[[Jargon File]]}}</ref> 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 (DJ)|William B. Williams]] beginning in the 1950s.<ref name=nytobit>{{cite web| url = https://select.nytimes.com/search/restricted/article?res=F50714FF3E5B0C778CDDA10894DE484D81| title = William B. Williams, Radio Personality, Dies |work=The New York Times |date=4 August 1986}}</ref>
The [[Jargon File]] reports that "hello, world" instead originated in 1967 with the language [[BCPL]].<ref>{{cite web |url=http://www.catb.org/jargon/html/B/BCPL.html |title=BCPL |work=[[Jargon File]]}}</ref> 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 (DJ)|William B. Williams]] beginning in the 1950s.<ref name=nytobit>{{cite web| url = https://select.nytimes.com/search/restricted/article?res=F50714FF3E5B0C778CDDA10894DE484D81| title = William B. Williams, Radio Personality, Dies |work=The New York Times |date=4 August 1986}}</ref>


==Variations==
==Variations==
Line 51: Line 50:


[[File:CNC Hello World.jpg|thumb|[[Numerical control|CNC]] machining test in [[Perspex]]]]
[[File:CNC Hello World.jpg|thumb|[[Numerical control|CNC]] machining test in [[Perspex]]]]
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 language]]s 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 [[Principle of good enough|good enough]].<ref>{{cite web|title=Malbolge|url=https://esolangs.org/wiki/Malbolge|website=Esolang|publisher=esolangs-wiki|access-date=28 October 2016}}</ref> 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.<ref>[http://golang.org/doc/go_tutorial.html#tmp_20 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.</ref> Another notable example is the [[Rust (programming language)|Rust programming language]], whose management system automatically inserts a "Hello, World" program when creating new projects.
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 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 language]]s 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 [[Principle of good enough|good enough]].<ref>{{cite web|title=Malbolge|url=https://esolangs.org/wiki/Malbolge|website=Esolang|publisher=esolangs-wiki|access-date=28 October 2016}}</ref>{{Unreliable source inline |date=November 2023}} 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.<ref>[http://golang.org/doc/go_tutorial.html#tmp_20 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.</ref> Another notable example is the [[Rust (programming language)|Rust programming language]], whose management system automatically inserts a "Hello, World" program when creating new projects.


[[File:HelloWorld Maktivism ComputerProgramming LEDs.jpg|thumb|A "Hello, World!" message being displayed through long-exposure [[light painting]] with a moving strip of [[Light Emitting Diode|LEDs]]]]
[[File:HelloWorld Maktivism ComputerProgramming LEDs.jpg|thumb|A "Hello, World!" message being displayed through long-exposure [[light painting]] with a moving strip of [[Light Emitting Diode|LEDs]]]]
Line 57: Line 56:
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 (programming language)|Lisp]], [[ML (programming language)|ML]], and [[Haskell (programming language)|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 effect (computer science)|side effects]]. Languages otherwise capable of printing "Hello, World!" (Assembly, C, [[VHDL]]) may also be used in [[embedded system]]s, where text output is either difficult (requiring additional components or communication with another computer) or nonexistent. For devices such as [[microcontroller]]s, [[field-programmable gate arrays]], and [[Complex programmable logic device|CPLDs]], "Hello, World!" may thus be substituted with a blinking [[Light-emitting diode|LED]], which demonstrates timing and interaction between components.<ref>{{cite web|last1=Silva|first1=Mike|title=Introduction to Microcontrollers - Hello World|url=http://www.embeddedrelated.com/showarticle/460.php|website=EmbeddedRelated.com|access-date=19 May 2015|date=11 September 2013}}</ref><ref>{{cite web|last1=George|first1=Ligo|title=Blinking LED using Atmega32 Microcontroller and Atmel Studio|url=https://electrosome.com/blinking-led-atmega32-avr-microcontroller/|website=electroSome|date=8 May 2013|access-date=19 May 2015}}</ref><ref>{{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|website=The Linux Documentation Project|access-date=19 May 2015}}</ref><ref>{{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|publisher=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|archive-date=21 May 2015|url-status=dead}}</ref><ref>{{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/|website=Hackaday|access-date=19 May 2015|date=6 April 2014}}</ref>
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 (programming language)|Lisp]], [[ML (programming language)|ML]], and [[Haskell (programming language)|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 effect (computer science)|side effects]]. Languages otherwise capable of printing "Hello, World!" (Assembly, C, [[VHDL]]) may also be used in [[embedded system]]s, where text output is either difficult (requiring additional components or communication with another computer) or nonexistent. For devices such as [[microcontroller]]s, [[field-programmable gate arrays]], and [[Complex programmable logic device|CPLDs]], "Hello, World!" may thus be substituted with a blinking [[Light-emitting diode|LED]], which demonstrates timing and interaction between components.<ref>{{cite web|last1=Silva|first1=Mike|title=Introduction to Microcontrollers - Hello World|url=http://www.embeddedrelated.com/showarticle/460.php|website=EmbeddedRelated.com|access-date=19 May 2015|date=11 September 2013}}</ref><ref>{{cite web|last1=George|first1=Ligo|title=Blinking LED using Atmega32 Microcontroller and Atmel Studio|url=https://electrosome.com/blinking-led-atmega32-avr-microcontroller/|website=electroSome|date=8 May 2013|access-date=19 May 2015}}</ref><ref>{{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|website=The Linux Documentation Project|access-date=19 May 2015}}</ref><ref>{{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|publisher=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|archive-date=21 May 2015|url-status=dead}}</ref><ref>{{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/|website=Hackaday|access-date=19 May 2015|date=6 April 2014}}</ref>


The [[Debian]] and [[Ubuntu (operating system)|Ubuntu]] [[Linux distribution]]s provide the "Hello, World!" program through their [[Package manager|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.<ref>{{cite web|title=Hello - GNU Project - Free Software Foundation|url=https://www.gnu.org/software/hello/|website=gnu.org|publisher=GNU Project|access-date=7 July 2017|archive-url=https://archive.today/20140529011826/http://www.gnu.org/software/hello/|archive-date=29 May 2014|url-status=dead}}</ref>
The [[Debian]] and [[Ubuntu]] [[Linux distribution]]s provide the "Hello, World!" program through their [[Package manager|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.<ref>{{cite web|title=Hello |url=https://www.gnu.org/software/hello/|website=GNU Project |publisher=Free Software Foundation |access-date=7 July 2017|archive-url=https://archive.today/20140529011826/http://www.gnu.org/software/hello/|archive-date=29 May 2014|url-status=dead}}</ref>


Variations of the "Hello, World!" program that produce a [[computer graphics|graphical output]] (as opposed to text output) have also been shown. [[Sun Microsystems|Sun]] demonstrated a "Hello, World!" program in [[Java (programming language)|Java]] based on [[scalable vector graphics]],<ref>{{cite news|last=Jolif|first=Christophe|title=Bringing SVG Power to Java Applications|newspaper=Sun Developer Network|date=January 2003}}</ref> and the [[XL (programming language)|XL]] programming language features a spinning Earth "Hello, World!" using [[3D computer graphics]].<ref>{{cite web|last=de Dinechin|first=Christophe|title=Hello world!|url=http://grenouillebouillie.wordpress.com/2010/07/24/hello-world/|publisher=Grenouille Bouillie|date=24 July 2010}}</ref> 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.<ref>{{cite web|url=http://www.bfoit.org/itp/Soloway/CACM_Nintendo_Generation.pdf|title=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|archive-date=5 May 2016|url-status=dead}}</ref>
Variations of the "Hello, World!" program that produce a [[computer graphics|graphical output]] (as opposed to text output) have also been shown. [[Sun Microsystems|Sun]] demonstrated a "Hello, World!" program in [[Java (programming language)|Java]] based on [[scalable vector graphics]],<ref>{{cite news|last=Jolif|first=Christophe|title=Bringing SVG Power to Java Applications|newspaper=Sun Developer Network|date=January 2003}}</ref> and the [[XL (programming language)|XL]] programming language features a spinning Earth "Hello, World!" using [[3D computer graphics]].<ref>{{cite web|last=de Dinechin|first=Christophe|title=Hello world!|url=http://grenouillebouillie.wordpress.com/2010/07/24/hello-world/|publisher=Grenouille Bouillie|date=24 July 2010}}</ref> 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.<ref>{{cite web|url=http://www.bfoit.org/itp/Soloway/CACM_Nintendo_Generation.pdf|title=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|archive-date=5 May 2016|url-status=dead}}</ref>
Line 65: Line 64:
"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.<ref name="ODwyer">{{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}}</ref> The concept has been extended beyond programming languages to [[Application programming interface|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.<ref>{{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/}}</ref><ref>{{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}}</ref>
"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.<ref name="ODwyer">{{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}}</ref> The concept has been extended beyond programming languages to [[Application programming interface|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.<ref>{{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/}}</ref><ref>{{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}}</ref>


==Wikipedia articles containing "Hello, World!" programs==
==Examples==


{{columns-list|colwidth=20em|
: ''Please consult the respective programming language's Wikipedia article for an example. Following examples are a subset of [[:Category: Programming languages with an ISO standard|programming languages with an ISO standard]].''
*[[ABAP#Hello world|ABAP]]

===[[Ada (programming language)|Ada]]===
*[[Ada (programming language)#"Hello, world!" in Ada|Ada]]
*[[Aldor#Examples|Aldor]]

*[[ALGOL#Timeline: Hello world|ALGOL]]
<syntaxhighlight lang="ada">
*[[ALGOL 60]]
with Ada.Text_IO;
*[[AmbientTalk#Hello world|AmbientTalk]]
procedure Hello is
*[[Amiga E#"Hello, World!" example|Amiga E]]
begin
*[[Apache Click#Example|Apache Click]]
Ada.Text_IO.Put_Line ("Hello, World!");
*[[Apache Jelly#Usage|Apache Jelly]]
end Hello;
*[[Apache Wicket#Example|Apache Wicket]]
</syntaxhighlight>
*[[AppJar#Example|AppJar]]

*[[AppleScript#Hello, world!|AppleScript]]
===[[ALGOL 60]]===
*[[Applesoft BASIC#Sample code|Applesoft BASIC]]

*[[Arc (programming language)#Examples|Arc]]
{{sxhl|2=m2|1= BEGIN DISPLAY("Hello, World!") END.}}
*[[Atari Assembler Editor#Example code|Atari Assembler Editor]]

*[[AutoLISP#Examples|AutoLISP]]
===[[BASIC]]===
*[[AviSynth#"Hello World"|AviSynth]]

*[[AWK#Hello World|AWK]]
<syntaxhighlight lang="basic">
*[[BASIC#Examples|BASIC]]
10 PRINT "Hello, World!"
*[[Basic Assembly Language#Examples|Basic Assembly Language]]

*[[Ballerina_(programming_language)#Hello_World|Ballerina]]
</syntaxhighlight>
*[[BCPL#Hello_world|BCPL]]

===[[C (programming language)|C]]===
*[[Beatnik (programming language)#Hello World|Beatnik]]
*[[Befunge#Sample Befunge-93 code|Befunge]]

*[[BETA (programming language)#Hello world!|BETA]]
<syntaxhighlight lang="c">
*[[Blitz BASIC#Examples|Blitz BASIC]]
#include <stdio.h>
*[[Brainfuck#Hello World!|Brainfuck]]

*[[C (programming language)#"Hello, world" example|C]]
int main(void)
*[[Caché ObjectScript#Caché programming examples|Caché ObjectScript]]
{
*[[Cairo (graphics)#Example|Cairo]]
printf("Hello, World!\n");
*[[C/AL#Hello World|C/AL]]
}
*[[Carbon (programming language)#Example|Carbon]]
</syntaxhighlight>
*[[Casio BASIC#Examples|Casio BASIC]]

*[[Charm (programming language)#Example|Charm]]
===[[C++]]===
*[[CherryPy#Pythonic interface|CherryPy]]

*[[Clean (programming language)#Examples|Clean]]
<syntaxhighlight lang="c++">
*[[Clipper (programming language)#Programming in Clipper|Clipper]]
#include <iostream>
*[[C++#Language|C++]]

*[[C Sharp (programming language)#Hello World|C#]]
int main()
*[[COBOL#Hello, world|COBOL]]
{
*[[Cobra (programming language)#Hello World|Cobra]]
std::cout << "Hello, World!" << std::endl;
*[[Common Intermediate Language#Example|Common Intermediate Language]]
}
*[[Crystal (programming_language)#Hello World|Crystal]]
</syntaxhighlight>
*[[Cython#Example|Cython]]
<!-- Note "return 0;" is implicit in main, I believe in at least C++20 if not all versions. -->
*[[Dart (programming language)#Example|Dart]]

*[[Darwin (programming language)#Example Code|Darwin]]
;C++23
*[[Data General Nova#Hello world program|Data General Nova]]

*[[Deno (software)#Examples|Deno]]
Also allowed in [[C++23]]:<ref>{{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}}</ref>
*[[DOORS Extension Language#"Hello, World" example|DOORS Extension Language]]

*[[Easy Programming Language#Programming examples|Easy Programming Language]]
<syntaxhighlight lang="c++">
*[[EC (programming language)#Hello world|eC]]
import std;
*[[El-76#Program sample|Эль-76]]
*[[Elixir (programming language)#Examples|Elixir]]
int main()
*[[Enyo (software)#Examples|Enyo]]
{
*[[Extensible Embeddable Language#Example code|Extensible Embeddable Language]]
std::print("Hello world!\n");
*[[Ezhil (programming language)#Hello world|எழில்]]
}
*[[F Sharp (programming language)#Examples|F#]]
</syntaxhighlight>
*[[FastAPI#Example|FastAPI]]

===[[C Sharp (programming language)|C#]]===
*[[Fjölnir (programming language)#Code examples|Fjölnir]]
*[[Flask (web framework)#Example|Flask]]

*[[Flix (programming language)#Hello world|Flix]]
<syntaxhighlight lang="c#">
*[[Forth (programming language)#“Hello, World!”|Forth]]
using System;
*[[Fortran#"Hello, World!" example|FORTRAN]]

*[[Fortress (programming language)#Example: Hello world!|Fortress]]
class Program
*[[FreeBASIC#Example code|FreeBASIC]]
{
*[[Go (programming language)#Hello world|Go]]
static void Main()
*[[Godot (game engine)#GDScript|Godot]]
{
*[[Google Gadgets#Technology|Google Gadgets]]
Console.WriteLine("Hello, World!");
*[[GNU Smalltalk#Examples|GNU Smalltalk]]
}
*[[Harbour (programming language)#Sample code|Harbour]]
}
*[[Haskell#Code examples|Haskell]]

*[[Hollywood (programming language)#Hello World program|Hollywood]]
</syntaxhighlight>or, using top-level statements (starting in C# 9):<ref>{{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}}</ref><syntaxhighlight lang="c#">
*[[HTML#Markup|HTML]]
using System;
*[[HTML Application#Example|HTML Application]]

*[[IBM Open Class#Examples|IBM Open Class]]
Console.WriteLine("Hello, World!");
*[[Idris (programming language)#Features|Idris]]
</syntaxhighlight>
*[[INTERCAL#Hello, world|INTERCAL]]

*[[Internet Foundation Classes#Hello World|Internet Foundation Classes]]
===[[COBOL]]===
*[[Io (programming language)#Examples|Io]]

*[[IRAF#IRAF specific languages|IRAF]]
<syntaxhighlight lang="cobolfree">
*[[J (programming language)#Examples|J]]
IDENTIFICATION DIVISION.
*[[JADE (programming language)#Hello World!|JADE]]
PROGRAM-ID. HELLO-WORLD.
*[[Jam.py (web framework)#Example|Jam.py]]
PROCEDURE DIVISION.
*[[Java (programming language)#Hello world example|Java]]
DISPLAY 'Hello, World!'.
*[[JavaFX Script#Syntax|JavaFX Script]]
STOP RUN.
*[[JavaScript#Simple examples|JavaScript]]
</syntaxhighlight>
*[[JFace#Example|JFace]]

*[[JUDO (software)#Syntax|JUDO]]
===[[Forth (programming language)|Forth]]===
*[[K (programming language)#Examples|K]]

*[[KERNAL#Example|KERNAL]]
<syntaxhighlight lang="forth">
*[[Kivy (framework)#Code example|Kivy]]
." Hello, World!" CR
*[[K-Meleon#Customization|K-Meleon]]
</syntaxhighlight>
*[[LibreLogo#Hello world example|LibreLogo]]

*[[Lisp (programming language)#Examples|Lisp]]
===[[Fortran]]===
*[[LiveScript (programming language)#Syntax|LiveScript]]

*[[LOLCODE#Language structure and examples|LOLCODE]]
<syntaxhighlight lang="fortran">
*[[Lua (programming language)#Syntax|Lua]]
program Hello
*[[MAC/65#MAC/65 ToolKit|MAC/65]]
print *, "Hello, World!"
*[[MACRO-10#Programming examples|MACRO-10]]
end program Hello
*[[MACRO-11#Programming example|MACRO-11]]
</syntaxhighlight>
*[[MAD (programming language)#"Hello, world" example|MAD]]

===[[Java (programming language)|Java]]===
*[[Magik (programming language)#Hello World example|Magik]]
*[[Malbolge#Hello, World!|Malbolge]]
<syntaxhighlight lang="java">
*[[MATLAB#"Hello,_world!"_example|MATLAB]]
public static void main(String[] args) {
*[[Mercury (programming language)#Examples|Mercury]]
System.out.print("Hello World!");
*[[MicroPython]]
}
*[[Microsoft Small Basic#Language|Microsoft Small Basic]]
</syntaxhighlight>
*[[mIRC scripting language#Code examples|mIRC scripting language]]

*[[MMIX#Architecture|MMIX]]
===[[JavaScript]]===
*[[Mockito#Example|Mockito]]

*[[Modula-3#Syntax|Modula-3]]
For browser console/JavaScript runtime (such as [[Node.js]]):<syntaxhighlight lang="javascript">
*[[Mojo (programming language)#Programming examples|Mojo]]
console.log("Hello, World!");
*[[Monad (functional programming)#IO monad (Haskell)|Monad]]
</syntaxhighlight>
*[[MUMPS#Hello, World! example|MUMPS]]
For HTML document:
*[[MXML#Example source code|MXML]]
<syntaxhighlight lang="javascript">
document.write("Hello, World!");
*[[Nemerle#Hello, World!|Nemerle]]
*[[Netwide Assembler#Sample programs|Netwide Assembler]]
</syntaxhighlight>
*[[Newspeak (programming language)#"Hello World" example|Newspeak]]
or
*[[Nim (programming language)#Hello world|Nim]]
<syntaxhighlight lang="javascript">
*[[NWScript#Hello world|NWScript]]
alert("Hello, World!");
*[[OmniMark#Example code|OmniMark]]
</syntaxhighlight>
*[[Opa (programming language)#Hello world|Opa]]

*[[OpenEdge Advanced Business Language#Hello World|OpenEdge Advanced Business Language]]
===[[Pascal (programming language)|Pascal]]===
*[[Open Programming Language#Examples|Open Programming Language]]

*[[Oriel (scripting language)#Examples|Oriel]]
<syntaxhighlight lang="pascal">
*[[ParaSail (programming language)#Examples|ParaSail]]
program hello(output);
*[[Parrot assembly language]]
begin
*[[Parrot intermediate representation#Example|Parrot intermediate representation]]
writeln('Hello, World!');
*[[Pascal (programming language)#Language constructs|Pascal]]
end.
*[[PCASTL#Hello world|PCASTL]]
</syntaxhighlight>
*[[PDP-8#String output|PDP-8]]

*[[Perl language structure#Basic syntax|Perl]]
===[[Prolog]]===
*[[Perl module#Examples|Perl module]]

*[[PHP#Syntax|PHP]]
<syntaxhighlight lang="prolog">
*[[Plack (software)#Examples|Plack]]
main() :- write("Hello, World!"), nl.
*[[Plua#Sample code, Plua 1|Plua]]
</syntaxhighlight>
*[[Plus (programming language)#"Hello, world" example|Plus]]

*[[PostScript#"Hello world"|PostScript]]
===[[Python (programming language)|Python]]===
*[[PowerBASIC#Hello world|PowerBASIC]]

*[[Prolog#Hello World|Prolog]]
<syntaxhighlight lang="python">
print("Hello, World!")
*[[PureBasic#Hello World example|PureBasic]]
*[[Pure Data#Code examples|Pure Data]]
</syntaxhighlight>
*[[PureScript#Examples|PureScript]]

*[[PyGTK#Syntax|PyGTK]]
===[[Ruby (programming language)|Ruby]]===
*[[Python (programming language)#Programming examples|Python]]

*[[Q (programming language from Kx Systems)#Examples|Q]]
<syntaxhighlight lang="ruby">
*[[QB64#Syntax|QB64]]
puts "Hello, World!"
*[[QuickBASIC#Syntax example|QuickBASIC]]
</syntaxhighlight>
*[[R (programming language)#Hello, World!|R]]

*[[Rack (web server interface)#Example application|Rack]]
===[[Rust (programming language)|Rust]]===
*[[Racket (programming language)#Code examples|Racket]]

*[[Raku (programming language)#Hello world|Raku]]
<syntaxhighlight lang="rust">
*[[React (software)#Basic usage|React]]
fn main() {
*[[React Native#Hello World example|React Native]]
println!("Hello, World!");
*[[Rebol#Design|Rebol]]
}
*[[Red_(programming_language)#Hello_World!|Red]]
</syntaxhighlight>
*[[Refal#Basics|Refal]]
===[[Scala (programming language)|Scala]]===
*[[RGtk2#Syntax|RGtk2]]
<syntaxhighlight lang="scala">
*[[Ring_(programming_language)#Hello_World_program|Ring]]
object HelloWorld:
*[[Robot Framework#Examples|Robot Framework]]
def main(args: Array[String]): Unit =
*[[Ruby syntax#Interactive sessions|Ruby]]
println("Hello, world!")
*[[Rust (programming language)#Hello World program|Rust]]
*[[SARL (programming language)#Hello, World!|SARL]]
</syntaxhighlight>
*[[Scala (programming language)#"Hello World" example|Scala]]
*[[Scilab#Syntax|Scilab]]
*[[Scratch (programming language)|Scratch]]
*[[Sed#Hello, world! example|Sed]]
*[[Self (programming language)#Basic syntax|Self]]
*[[Shakespeare Programming Language#Example code|Shakespeare]]
*[[Simula#Classic Hello world|Simula]]
*[[SmallBASIC#Syntax|SmallBASIC]]
*[[Smalltalk#Hello World example|Smalltalk]]
*[[Standard ML#Hello, world!|Standard ML]]
*[[Standard Widget Toolkit#Programming|Standard Widget Toolkit]]
*[[Swift (programming language)#Basic Syntax|Swift]]
*[[TeX#How it is run|TeX]]
*[[TI-990#Assembly Language Programming Example|TI-990]]
*[[TI-BASIC#Hello world|TI‑BASIC]]
*[[Tornado (web server)#Example|Tornado]]
*[[Turbo Pascal#Syntax|Turbo Pascal]]
*[[Turing (programming language)#Syntax|Turing]]
*[[UCBLogo#Syntax|UCBLogo]]
*[[UEFI#Applications development|UEFI]]
*[[Umple#Examples|Umple]]
*[[Unit.js#Usage|Unit.js]]
*[[Unlambda#Basic principles|Unlambda]]
*[[V_(programming_language)#Hello_world|V]]
*[[Vala (programming language)#Hello world|Vala]]
*[[Visual Basic (.NET)#Hello_World!|Visual Basic]]
*[[Visual IRC#Code examples|Visual IRC]]
*[[web2py]]
*[[Web Server Gateway Interface#Example application|Web Server Gateway Interface]]
*[[Whitespace (programming language)#Sample code|Whitespace]]
*[[Wt (web toolkit)#Code example|Wt]]
*[[XBLite#Sample Code|XBLite]]
*[[XHarbour#Hello, world!|XHarbour]]
*[[Xojo#Example code|Xojo]]
*[[XULJet#Examples|XULJet]]
*[[Zig_(programming_language)#Hello_World|Zig]]
}}


==See also==
==See also==
Line 237: Line 273:
*[[99 Bottles of Beer#References in computer science|"99 Bottles of Beer" as used in computer science]]
*[[99 Bottles of Beer#References in computer science|"99 Bottles of Beer" as used in computer science]]
*{{slink|Bad Apple!!|Use as a graphical and audio test}} (graphic equivalent to "Hello, World!" for old hardware)
*{{slink|Bad Apple!!|Use as a graphical and audio test}} (graphic equivalent to "Hello, World!" for old hardware)
*{{slink|C (programming language)|"Hello, world" example}}
*[[Foobar]]
*[[Foobar]]
*[[Java BluePrints|Java Pet Store]]
*[[Java BluePrints|Java Pet Store]]
Line 250: Line 285:
{{Commons category|Hello World}}
{{Commons category|Hello World}}
{{Wikibooks|Computer Programming|Hello world}}
{{Wikibooks|Computer Programming|Hello world}}
*[http://helloworldcollection.de The Hello World Collection]
*[https://helloworldcollection.de The Hello World Collection]
*{{cite web |title=Hello world/Text |url=http://rosettacode.org/wiki/Hello_world/Text | work=[[Rosetta Code]] }}
*{{cite web |title=Hello world/Text |url=https://rosettacode.org/wiki/Hello_world/Text |work=[[Rosetta Code]]}}
*{{cite web |title=GitHub – leachim6/hello-world: Hello world in every computer language. Thanks to everyone who contributes to this, make sure to see CONTRIBUTING.md for contribution instructions!|website=[[GitHub]] | date=30 October 2021|url=https://github.com/leachim6/hello-world}}
*{{cite web |title=GitHub – leachim6/hello-world: Hello world in every computer language. Thanks to everyone who contributes to this, make sure to see CONTRIBUTING.md for contribution instructions!|website=[[GitHub]] | date=30 October 2021|url=https://github.com/leachim6/hello-world}}
*{{cite web |title=Unsung Heroes of IT / Part One: Brian Kernighan |url=http://theunsungheroesofit.com/helloworld/ |work=TheUnsungHeroesOfIT.com |access-date=23 August 2014 |archive-url=https://web.archive.org/web/20160326193543/http://theunsungheroesofit.com/helloworld/ |archive-date=26 March 2016 |url-status=dead }}
*{{cite web |title=Unsung Heroes of IT / Part One: Brian Kernighan |url=http://theunsungheroesofit.com/helloworld/ |work=TheUnsungHeroesOfIT.com |access-date=23 August 2014 |archive-url=https://web.archive.org/web/20160326193543/http://theunsungheroesofit.com/helloworld/ |archive-date=26 March 2016 |url-status=dead }}
Line 261: Line 296:
[[Category:Computer programming folklore]]
[[Category:Computer programming folklore]]
[[Category:Articles with example code]]
[[Category:Articles with example code]]
[[Category:Articles with quotation marks in the title]]

Revision as of 06:52, 6 May 2024

A "Hello, World!" program is generally a simple computer program which outputs (or displays) to the screen (often the console) a message similar to "Hello, World!" while ignoring any user input. A small piece of code in most general-purpose programming languages, this program is used to illustrate a language's basic syntax. A "Hello, World!" program is often the first written by a student of a new programming language,[1] but such a program 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

"Hello, World!" program handwritten in the C language and signed 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 1978 book The C Programming Language,[2] with likely earlier use in BCPL. The example program from the book prints "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 main( ) function defines where the program should start executing. The function body consists of a single statement, a call to the printf() function, which stands for "print formatted"; it outputs to the console whatever is passed to it as the parameter, in this case the string "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 above 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.

The Jargon File reports that "hello, world" instead originated in 1967 with the language BCPL.[5] 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.[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 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.

CNC machining test in Perspex

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 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][unreliable source?] 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 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 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]

Wikipedia articles containing "Hello, World!" programs

See also

References

  1. ^ James A Langbridge (3 December 2013). Professional Embedded ARM Development. ISBN 9781118887820.
  2. ^ Kernighan, Brian W.; Ritchie, Dennis M. (1978). The C Programming Language (1st ed.). Englewood Cliffs, NJ: Prentice Hall. ISBN 0-13-110163-3.
  3. ^ Kernighan, Brian (1974). "Programming in C: A Tutorial" (PDF). Bell Labs. Retrieved 9 January 2019.
  4. ^ "The Programming Language B". Bell Labs.
  5. ^ "BCPL". Jargon File.
  6. ^ "William B. Williams, Radio Personality, Dies". The New York Times. 4 August 1986.
  7. ^ "C++ Programming/Examples/Hello world". Wikibooks. Retrieved 16 March 2022.
  8. ^ "Malbolge". Esolang. esolangs-wiki. Retrieved 28 October 2016.
  9. ^ A Tutorial for the Go Programming Language. Archived 26 July 2010 at the Wayback Machine The Go Programming Language. Retrieved 26 July 2011.
  10. ^ Silva, Mike (11 September 2013). "Introduction to Microcontrollers - Hello World". EmbeddedRelated.com. Retrieved 19 May 2015.
  11. ^ George, Ligo (8 May 2013). "Blinking LED using Atmega32 Microcontroller and Atmel Studio". electroSome. Retrieved 19 May 2015.
  12. ^ PT, Ranjeeth. "2. AVR Microcontrollers in Linux HOWTO". The Linux Documentation Project. Retrieved 19 May 2015.
  13. ^ Andersson, Sven-Åke (2 April 2012). "3.2 The first Altera FPGA design". Raidió Teilifís Éireann. Archived from the original on 21 May 2015. Retrieved 19 May 2015.
  14. ^ Fabio, Adam (6 April 2014). "CPLD Tutorial: Learn programmable logic the easy way". Hackaday. Retrieved 19 May 2015.
  15. ^ "Hello". GNU Project. Free Software Foundation. Archived from the original on 29 May 2014. Retrieved 7 July 2017.
  16. ^ Jolif, Christophe (January 2003). "Bringing SVG Power to Java Applications". Sun Developer Network.
  17. ^ de Dinechin, Christophe (24 July 2010). "Hello world!". Grenouille Bouillie.
  18. ^ "Teaching the Nintendo Generation to Program" (PDF). bfoit.org. Archived from the original (PDF) on 5 May 2016. Retrieved 27 December 2015.
  19. ^ O'Dwyer, Arthur (September 2017). Mastering the C++17 STL: Make full use of the standard library components in C++17. Packt Publishing Ltd. p. 251. ISBN 978-1-78728-823-2. Retrieved 4 December 2019.
  20. ^ Wiegers, Harold (28 June 2018). "The importance of "Time to First Hello, World!" an efficient API program".
  21. ^ Jin, Brenda; Sahni, Saurabh; Shevat, Amir (29 August 2018). Designing Web APIs: Building APIs That Developers Love. O'Reilly Media. ISBN 9781492026877. Retrieved 19 February 2020.

External links