This commit is contained in:
2022-10-19 10:52:44 +08:00
parent f6cc9300a6
commit 7526662168
16 changed files with 2894 additions and 855 deletions

View File

@@ -0,0 +1,8 @@
## Common Rule
### LowerCamel case
Variables and functions start with lower camel case. e.g.
```cpp
int myName = 0;
void doSomething(int argNum1);
```