Hope you enjoy it!
Why "Hello, World!"?
A "Hello, World!" program is a traditional first program written by software developers when learning a new language. It's purpose isn't so much to learn anything about the syntax of the language, but more to test that the programming environment is set up correctly. It's simple enough that syntax mistakes can be easily avoided, thus making it a good choice for a first program.
The tradition of using some variation of the phrase "Hello, World!" seems to have its origin in an example program first published in The C Programming Language, written by Kernighan and Ritchie (K&R).
main() {
printf("hello, world");
}
Further Reading
List of "Hello, World!" Programs
1 comment:
Bill,
What a nice double meaning, "Hello World" and "Hello (Blog) world". I just started a Blog for some of the same reasons, it helps me learn by sharing.
Post a Comment