To do this we’ve modified certain important aspects of the Google Style Guide. This is a living document and will likely change as new issues arise.

When contributing to the homework server keep the following guidelines in mind.

General Rules

Header Files

Commenting

Naming

Class Names

Type or class names should begin with a capital letter and have every word after begin with a capital letter (camel casing).

class MyClassName {...}

Function Names

All functions should be camel cased with the first letter being lowercase.

void getJesseSushi();

Variable Names

All variables should be lower case with underscores

int cats_in_house = 0;