9 lines
152 B
Markdown
9 lines
152 B
Markdown
## Common Rule
|
|
### LowerCamel case
|
|
Variables and functions start with lower camel case. e.g.
|
|
```cpp
|
|
int myName = 0;
|
|
void doSomething(int argNum1);
|
|
```
|
|
|