Skip to content
This repository was archived by the owner on Nov 18, 2019. It is now read-only.

Latest commit

 

History

History
9 lines (8 loc) · 443 Bytes

File metadata and controls

9 lines (8 loc) · 443 Bytes

Coding Style

  1. Follow camel case for variable and method names.
  2. Follow pascal case (camel case with first letter capitalised) for class names.
  3. Give short, meaningful names.
  4. Indent code with 4 spaces.
  5. Give spaces around binary operators.
  6. Give space between if, while, for etc and their condition parenthesis.
  7. Braces start from same line as declaration, end in a new line.