Syntax and Formatting¶
Variables are named in camelCase, starting with a lowercase letter. E.g., int copyNumber;
Functions/subroutines are named in snake_case. E.g., void run_my_function();
Booleans should start with “is” or something that implies a true/false response. E.g., bool isLipid;
Do not put code in header (.h) files. They are only for declarations. Exclude any function definitions, including constructors/destructors.