vault backup: 2022-12-13 09:35:21

This commit is contained in:
2022-12-13 09:35:22 +08:00
parent fe206c5508
commit 47de0c6e84
18 changed files with 86 additions and 13 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);
```