From 8877351dfe108f0b06d129c4dd57d1087ed4f9c4 Mon Sep 17 00:00:00 2001 From: sugu Date: Tue, 8 Jul 2025 21:07:21 +0700 Subject: [PATCH] Hello word --- .vscode/settings.json | 7 +++++++ main.py | 1 + 2 files changed, 8 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 main.py diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..5e56ca7 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "python.languageServer": "Pylance", + "python.analysis.diagnosticSeverityOverrides": { + "reportMissingModuleSource": "none", + "reportShadowedImports": "none" + } +} \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000..a3ea3c6 --- /dev/null +++ b/main.py @@ -0,0 +1 @@ +print("Hello") \ No newline at end of file