Files
googlepinyinime-rev/.vscode/custom.code-snippets
2025-01-01 23:59:37 +08:00

13 lines
230 B
Plaintext

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