Hello World Program

Revision as of 12:23, 2 August 2022 by Gmelli (talk | contribs) (Text replacement - ". " to ". ")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A Hello World Program is a simple computer program that outputs the expression “Hello, World!”.



References

2018a

2018b

2018c

main() {

printf("hello, world\n");

}

Since then, Hello World has been implemented in just about every programming language on the planet. This collection includes 579 Hello World programs in as many more-or-less well known programming languages, plus 78 human languages.

1988

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