initial commit

This commit is contained in:
fanlumaster
2025-01-01 23:59:37 +08:00
commit e865631fe9
53 changed files with 12742 additions and 0 deletions

13
.vscode/custom.code-snippets vendored Normal file
View File

@ -0,0 +1,13 @@
{
"Main Function": {
"scope": "c,cpp",
"prefix": "main",
"body": [
"int main(int argc, char *argv[]) {",
" $0",
" return 0;",
"}"
],
"description": "Insert a C++ main function"
}
}