Hello World Program

From GM-RKB
Jump to navigation Jump to search

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");
  }