Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 274 Bytes

CONVENTIONS.md

File metadata and controls

13 lines (12 loc) · 274 Bytes

Conventions

  • Blocks must have curly braces on the same line
  • Functions must be LowerCamelCase
  • Variables must be lowerCamelCase
  • Classes must be UpperCamelCase
class YourProgram {
    void yourMethod(int yourVariable) {
        // Code Here
    }
}