what do you think about these guidelines?
- Variables should by written in Pascal case (MyVar)
- Constants should be prefixed by a lowercase 'c' (cMyConst)
- Operators should have space around them for readability (6 * 4 / 2)
- Expressions that are used multiple times should be in a variable
- Variables should have descriptive names