Irc logs of meeting (Coding style and standards) - oop344 20113

From CDOT Wiki
Jump to: navigation, search

Indentation

  • No Tab Character allowed. (replace tabs with 4 spaces)
  • 4 spaces for indentation

Blocks

if(condition) {
    whatever;
}

Variable Naming

  • Each object must have its own type

Class Naming

  • Use the class name for the name of the file but make sure it is all lowercase