This commit is contained in:
Even Bell 2025-03-20 21:59:27 +08:00
commit 0e0c08b4eb
3 changed files with 17 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.exe
build/
output/

12
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,12 @@
{
"c-cpp-compile-run.c-flags": "-fdiagnostics-color=always -Wall -g",
"c-cpp-compile-run.output-location": "build",
"c-cpp-compile-run.save-before-compile": true,
"c-cpp-compile-run.should-show-notifications": false,
"C_Cpp.clang_format_style": "LLVM",
"[c]": {
"files.encoding": "gbk"
},
"editor.tabSize": 2,
"files.eol": "\n"
}

2
0.run/helloworld.c Normal file
View File

@ -0,0 +1,2 @@
#include <stdio.h>
int main() { printf("你好,世界!"); }