From 28611507287bbac6f20a540996cff243a7f0b5da Mon Sep 17 00:00:00 2001 From: hyy <2172637209@qq.com> Date: Mon, 29 Sep 2025 22:47:04 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E4=BA=A4=20src=20=E5=92=8C=20doc=20?= =?UTF-8?q?=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/main.py diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..af784fa --- /dev/null +++ b/src/main.py @@ -0,0 +1,5 @@ +print("Hello, World!") +def greet(name): + return f"Hello, {name}!" +if __name__ == "__main__": + print(greet("Team")) \ No newline at end of file