THIS PAGE IS BEING EDITED. DO NOT EDIT! THIS MEANS YOU! HEHE ;) 1. '''Keep procedures short''' ''Why you may ask?'' Would you rather see 200 lines of code that does X, or a command call saying do X. 1. '''Use descriptive names for variables and procedures''' Don't go crazy and write 100 character variable names, unless perhaps you're working with generated code (or crazy). 1. '''Keep a consistent pattern of object/memory management''' Decide ahead of time if the parent of a procedure should manage a certain object, or if the child or called function should, and try to be consistent about how things should be managed. 1. '''Use