Chapter 3 - The Art of Programming
NOTES:
What is the best way to learn programming?
Take classes. Read tutorial book.(My approach). Get the manuals and plunge in. Tutored by a programmer.
The Programming Process
- Identify the required inputs, such as data or information given by the user.
- Make an overall design for the program, including the general method - the algorithm - by which the program computes the output.
- Decide how the output will print; for example, to files or displayed graphically.
- Refine the overall design by specifying more detail.
- Write the Perl code.