CS 101 Notes 9/21/2010 Programming Style: Writing code so that it is easy for other people to figure out what you are doing Comments - help describe the code Meaningful Variable Names Blank Lines to separate parts of a program Indentation - help identify the sub-parts of a program. Often used with loops and if statements. int degrees = 60; int loopCounter; loopCounter = 1; while ( loopCounter <= 6 ) { tParam.forward (len); tParam.turn (degrees); loopCounter = loopCounter + 1; }