wiki:coding_rules

Version 1 (modified by Mathieu Morlighem, 15 years ago) ( diff )

Added a rule

Coding rules

  • variables should not use capital letters. Use underscores to make variables more understandable.
  • Function names and enums should not use any underscore. Use capital letters to make names more understandable.

Example:

  Input* vx_input=GetInput(inputs,VxInput);
Note: See TracWiki for help on using the wiki.