Programming Exercise: Hello, World

The first program to write is the same for all languages:

Print the words
hello, world

This is the big hurdle; to leap over it you have to be able to create the program text some-
where, compile it successfully, load it, run it, and find out where your output went.
With these mechanical details mastered, everything else is comparatively easy.
— KERNIGHAN & RITCHIE, The C Programming Language (1988)

Programming Language

Instructions

Print the words hello, world.

Scratchpad

Good Stuff

Initialisms similar to RTFM include "STFW" [...], "GIYF" ("Google is your friend") and "LMGTFY" ("let me Google that for you"). These indicate that the questioner could have easily found the answer to their question on the World Wide Web.
— English Wikipedia, “RFTM” (accessed on 13 Oct 2018)

Hints and Answers

The exercises in this set of books have been designed for self-study as well as for classroom study. It is difficult, if not impossible, for anyone to learn a subject purely by reading about it, without applying the information to specific problems and thereby being encouraged to think about what has been read. Furthermore, we all learn best the things that we have discovered for ourselves.

[...]

Solutions to most of the exercises appear in the answers section. Please use them wisely; do not turn to the answer until you have made a genuine effort to solve the problem by yourself, or unless you absolutely do not have time to work this particular problem. AFTER getting your own solution or giving the problem a decent try, you may find the answer instructive and helpful.

[...]

When working an exercise you may generally use the answers to previous exercises, unless specifically forbidden from doing so.

— DONALD E. KNUTH, The Art of Computer Programming (1997)