show/hide this revision's text 2 added 201 characters in body

Try to make the code self-explaining. One of the most important things is to use meaningful names for classes, functions, variables etc.

Comment the sections that aren't self-explaining. Trivial commenting (e.g. i++; // Add 1 to i) makes the code harder to read.

By the way - the closer to pseudocode you can work, the more self-explaining your code can become. This is a privilege of high-level languages; it's hard to make self-explaining assembly code.

show/hide this revision's text 1

Try to make the code self-explaining. One of the most important things is to use meaningful names for classes, functions, variables etc.

Comment the sections that aren't self-explaining. Trivial commenting (e.g. i++; // Add 1 to i) makes the code harder to read.