Difference between revisions of "Coding conventions"
m (1 revision) |
(talk) |
||
Line 1: | Line 1: | ||
− | <h1> Coding Conventions </ | + | <h1> Coding Conventions </h1> |
If you want your source to be taken seriously, it would be a good idea to follow these conventions closely. | If you want your source to be taken seriously, it would be a good idea to follow these conventions closely. | ||
Revision as of 19:28, 28 September 2011
Coding Conventions
If you want your source to be taken seriously, it would be a good idea to follow these conventions closely.
- Do not use camelCase, use an underscore (_) instead for your function and variable names
- Use 4 spaces for indentation. Do not use Tabs.
- Always use the latest source
- Use // for single line comments, use /* */ for block comments