top of page

Program Review and Commenting

We insist that your programs have proper and current comments.

Code commenting involves placing clear and concise descriptions inside of the programs essentially detailing what the code is doing. Proper use of commenting can make code maintenance much easier, as well as helping make finding bugs faster. Further, commenting is very important when writing functions that other people will use. Remember, well documented code is as important as correctly working code.

bottom of page