From 0e0c08b4ebfde97cd83dfba4adeb1736ec6f7d30 Mon Sep 17 00:00:00 2001
From: Even Bell <130771607+2000e@users.noreply.github.com>
Date: Thu, 20 Mar 2025 21:59:27 +0800
Subject: [PATCH] init

---
 .gitignore            |  3 +++
 .vscode/settings.json | 12 ++++++++++++
 0.run/helloworld.c    |  2 ++
 3 files changed, 17 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 .vscode/settings.json
 create mode 100644 0.run/helloworld.c

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8b23523
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+*.exe
+build/
+output/
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..54f99ac
--- /dev/null
+++ b/.vscode/settings.json
@@ -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"
+}
diff --git a/0.run/helloworld.c b/0.run/helloworld.c
new file mode 100644
index 0000000..38c2368
--- /dev/null
+++ b/0.run/helloworld.c
@@ -0,0 +1,2 @@
+#include <stdio.h>
+int main() { printf("��ã����磡"); }
\ No newline at end of file