Files
googlepinyinime-rev/.vscode/custom.code-snippets

13 lines
230 B
Plaintext
Raw Permalink Normal View History

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